summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-nonstandard-style-unicode-1.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 /src/test/ui/lint/lint-nonstandard-style-unicode-1.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 'src/test/ui/lint/lint-nonstandard-style-unicode-1.rs')
-rw-r--r--src/test/ui/lint/lint-nonstandard-style-unicode-1.rs49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/test/ui/lint/lint-nonstandard-style-unicode-1.rs b/src/test/ui/lint/lint-nonstandard-style-unicode-1.rs
deleted file mode 100644
index 7c45c0993..000000000
--- a/src/test/ui/lint/lint-nonstandard-style-unicode-1.rs
+++ /dev/null
@@ -1,49 +0,0 @@
-#![allow(dead_code)]
-
-#![forbid(non_camel_case_types)]
-
-// Some scripts (e.g., hiragana) don't have a concept of
-// upper/lowercase
-
-// 1. non_camel_case_types
-
-// Can start with non-lowercase letter
-struct Θχ;
-struct ヒa;
-
-struct χa;
-//~^ ERROR type `χa` should have an upper camel case name
-
-// If there's already leading or trailing underscores, they get trimmed before checking.
-// This is fine:
-struct _ヒb;
-
-// This is not:
-struct __χa;
-//~^ ERROR type `__χa` should have an upper camel case name
-
-// Besides this, we cannot have two continuous underscores in the middle.
-
-struct 对__否;
-//~^ ERROR type `对__否` should have an upper camel case name
-
-struct ヒ__χ;
-//~^ ERROR type `ヒ__χ` should have an upper camel case name
-
-// also cannot have lowercase letter next to an underscore.
-// so this triggers the lint:
-
-struct Hello_你好;
-//~^ ERROR type `Hello_你好` should have an upper camel case name
-
-struct Hello_World;
-//~^ ERROR type `Hello_World` should have an upper camel case name
-
-struct 你_ӟ;
-//~^ ERROR type `你_ӟ` should have an upper camel case name
-
-// and this is ok:
-
-struct 你_好;
-
-fn main() {}