rust/src/test/ui/issues/issue-10969.stderr

24 lines
548 B
Plaintext
Raw Normal View History

error[E0618]: expected function, found `i32`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-10969.rs:2:5
|
2018-02-23 03:42:32 +03:00
LL | fn func(i: i32) {
| - `i32` defined here
2019-03-09 15:03:44 +03:00
LL | i();
| ^--
| |
| call expression requires function
error[E0618]: expected function, found `i32`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-10969.rs:6:5
|
2018-02-23 03:42:32 +03:00
LL | let i = 0i32;
| - `i32` defined here
2019-03-09 15:03:44 +03:00
LL | i();
| ^--
| |
| call expression requires function
error: aborting due to 2 previous errors
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0618`.