blob: 1c7d52b6d60542fc93bdb81a5f157c63a4d263e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
error[E0618]: expected function, found `S`
--> $DIR/issue-80853.rs:4:5
|
LL | fn repro_ref(thing: S) {
| ----- `thing` has type `S`
LL | thing();
| ^^^^^--
| |
| call expression requires function
error: aborting due to previous error
For more information about this error, try `rustc --explain E0618`.
|