2023-10-27 20:12:45 +00:00
|
|
|
error: missing parameters for function definition
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/removed-syntax-fn-sigil.rs:2:14
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let x: fn~() = || ();
|
2023-10-27 20:12:45 +00:00
|
|
|
| ^ help: add a parameter list
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2023-10-27 20:12:45 +00:00
|
|
|
error: expected one of `->`, `;`, or `=`, found `~`
|
|
|
|
|
--> $DIR/removed-syntax-fn-sigil.rs:2:14
|
|
|
|
|
|
|
|
|
|
|
LL | let x: fn~() = || ();
|
|
|
|
|
| ^ expected one of `->`, `;`, or `=`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-10-20 23:36:17 +03:00
|
|
|
|