summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/lint-non-camel-case-types.rs
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 /tests/ui/lint/lint-non-camel-case-types.rs
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 'tests/ui/lint/lint-non-camel-case-types.rs')
-rw-r--r--tests/ui/lint/lint-non-camel-case-types.rs37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/ui/lint/lint-non-camel-case-types.rs b/tests/ui/lint/lint-non-camel-case-types.rs
new file mode 100644
index 000000000..acd5c5df9
--- /dev/null
+++ b/tests/ui/lint/lint-non-camel-case-types.rs
@@ -0,0 +1,37 @@
+#![forbid(non_camel_case_types)]
+#![allow(dead_code)]
+
+struct ONE_TWO_THREE;
+//~^ ERROR type `ONE_TWO_THREE` should have an upper camel case name
+
+struct foo { //~ ERROR type `foo` should have an upper camel case name
+ bar: isize,
+}
+
+enum foo2 { //~ ERROR type `foo2` should have an upper camel case name
+ Bar
+}
+
+struct foo3 { //~ ERROR type `foo3` should have an upper camel case name
+ bar: isize
+}
+
+type foo4 = isize; //~ ERROR type `foo4` should have an upper camel case name
+
+enum Foo5 {
+ bar //~ ERROR variant `bar` should have an upper camel case name
+}
+
+trait foo6 { //~ ERROR trait `foo6` should have an upper camel case name
+ type foo7; //~ ERROR associated type `foo7` should have an upper camel case name
+ fn dummy(&self) { }
+}
+
+fn f<ty>(_: ty) {} //~ ERROR type parameter `ty` should have an upper camel case name
+
+#[repr(C)]
+struct foo7 {
+ bar: isize,
+}
+
+fn main() { }