summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dyn-star/feature-gate-dyn_star.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/dyn-star/feature-gate-dyn_star.rs')
-rw-r--r--src/test/ui/dyn-star/feature-gate-dyn_star.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/dyn-star/feature-gate-dyn_star.rs b/src/test/ui/dyn-star/feature-gate-dyn_star.rs
deleted file mode 100644
index 4756661cf..000000000
--- a/src/test/ui/dyn-star/feature-gate-dyn_star.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// Feature gate test for dyn_star
-
-/// dyn* is not necessarily the final surface syntax (if we have one at all),
-/// but for now we will support it to aid in writing tests independently.
-pub fn dyn_star_parameter(_: &dyn* Send) {
- //~^ dyn* trait objects are unstable
-}
-
-fn main() {}