summaryrefslogtreecommitdiffstats
path: root/tests/ui/stability-attribute/issue-106589.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/stability-attribute/issue-106589.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/stability-attribute/issue-106589.rs b/tests/ui/stability-attribute/issue-106589.rs
new file mode 100644
index 000000000..3cad9a3d2
--- /dev/null
+++ b/tests/ui/stability-attribute/issue-106589.rs
@@ -0,0 +1,10 @@
+// #![feature(staged_api)] // note: `staged_api` not enabled
+
+#![stable(feature = "foo", since = "1.0.0")]
+//~^ ERROR stability attributes may not be used outside of the standard library
+
+#[unstable(feature = "foo", issue = "none")]
+//~^ ERROR stability attributes may not be used outside of the standard library
+fn foo_unstable() {}
+
+fn main() {}