14 lines
314 B
Text
14 lines
314 B
Text
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
|
|
|