summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-group-nonstandard-style.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/lint/lint-group-nonstandard-style.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/lint/lint-group-nonstandard-style.stderr')
-rw-r--r--src/test/ui/lint/lint-group-nonstandard-style.stderr57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/test/ui/lint/lint-group-nonstandard-style.stderr b/src/test/ui/lint/lint-group-nonstandard-style.stderr
deleted file mode 100644
index fcd010123..000000000
--- a/src/test/ui/lint/lint-group-nonstandard-style.stderr
+++ /dev/null
@@ -1,57 +0,0 @@
-warning: type `snake_case` should have an upper camel case name
- --> $DIR/lint-group-nonstandard-style.rs:22:16
- |
-LL | struct snake_case;
- | ^^^^^^^^^^ help: convert the identifier to upper camel case: `SnakeCase`
- |
-note: the lint level is defined here
- --> $DIR/lint-group-nonstandard-style.rs:18:17
- |
-LL | #![warn(nonstandard_style)]
- | ^^^^^^^^^^^^^^^^^
- = note: `#[warn(non_camel_case_types)]` implied by `#[warn(nonstandard_style)]`
-
-error: function `CamelCase` should have a snake case name
- --> $DIR/lint-group-nonstandard-style.rs:4:4
- |
-LL | fn CamelCase() {}
- | ^^^^^^^^^ help: convert the identifier to snake case: `camel_case`
- |
-note: the lint level is defined here
- --> $DIR/lint-group-nonstandard-style.rs:1:9
- |
-LL | #![deny(nonstandard_style)]
- | ^^^^^^^^^^^^^^^^^
- = note: `#[deny(non_snake_case)]` implied by `#[deny(nonstandard_style)]`
-
-error: function `CamelCase` should have a snake case name
- --> $DIR/lint-group-nonstandard-style.rs:12:12
- |
-LL | fn CamelCase() {}
- | ^^^^^^^^^ help: convert the identifier to snake case: `camel_case`
- |
-note: the lint level is defined here
- --> $DIR/lint-group-nonstandard-style.rs:10:14
- |
-LL | #[forbid(nonstandard_style)]
- | ^^^^^^^^^^^^^^^^^
- = note: `#[forbid(non_snake_case)]` implied by `#[forbid(nonstandard_style)]`
-
-error: static variable `bad` should have an upper case name
- --> $DIR/lint-group-nonstandard-style.rs:14:16
- |
-LL | static bad: isize = 1;
- | ^^^ help: convert the identifier to upper case: `BAD`
- |
- = note: `#[forbid(non_upper_case_globals)]` implied by `#[forbid(nonstandard_style)]`
-
-warning: function `CamelCase` should have a snake case name
- --> $DIR/lint-group-nonstandard-style.rs:20:12
- |
-LL | fn CamelCase() {}
- | ^^^^^^^^^ help: convert the identifier to snake case: `camel_case`
- |
- = note: `#[warn(non_snake_case)]` implied by `#[warn(nonstandard_style)]`
-
-error: aborting due to 3 previous errors; 2 warnings emitted
-