mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
15 lines
314 B
Plaintext
15 lines
314 B
Plaintext
error: parameter defaults are not supported
|
|
--> $DIR/param-default.rs:1:15
|
|
|
|
|
LL | fn foo(x: i32 = 1) {}
|
|
| ^^^
|
|
|
|
error: parameter defaults are not supported
|
|
--> $DIR/param-default.rs:3:19
|
|
|
|
|
LL | type Foo = fn(i32 = 0);
|
|
| ^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|