1
Fork 0
rust/src/test/ui/enable-unstable-lib-feature.stderr

15 lines
391 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error: function `BOGUS` should have a snake case name such as `bogus`
2018-12-25 08:56:47 -07:00
--> $DIR/enable-unstable-lib-feature.rs:12:1
2018-08-08 14:28:26 +02:00
|
LL | pub fn BOGUS() { } //~ ERROR
| ^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 08:56:47 -07:00
--> $DIR/enable-unstable-lib-feature.rs:6:9
2018-08-08 14:28:26 +02:00
|
LL | #![deny(non_snake_case)] // To trigger a hard error
| ^^^^^^^^^^^^^^
error: aborting due to previous error