summaryrefslogtreecommitdiffstats
path: root/tests/ui/extern/issue-116203.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/extern/issue-116203.rs')
-rw-r--r--tests/ui/extern/issue-116203.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ui/extern/issue-116203.rs b/tests/ui/extern/issue-116203.rs
new file mode 100644
index 000000000..f82128416
--- /dev/null
+++ b/tests/ui/extern/issue-116203.rs
@@ -0,0 +1,21 @@
+extern "C" {
+ thread_local! {
+ static FOO: u32 = 0;
+ //~^ error: extern items cannot be `const`
+ //~| error: incorrect `static` inside `extern` block
+ }
+}
+
+macro_rules! hello {
+ ($name:ident) => {
+ const $name: () = ();
+ };
+}
+
+extern "C" {
+ hello! { yes }
+ //~^ error: extern items cannot be `const`
+ //~| error: incorrect `static` inside `extern` block
+}
+
+fn main() {}