]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/typeck/typeck_type_placeholder_item.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / test / ui / typeck / typeck_type_placeholder_item.rs
index 2523362fdc4b6637127f22ce983977642eab32f7..8a52556ed346e1564b37f57e64ad47577aadf6ee 100644 (file)
@@ -1,5 +1,9 @@
 // Needed for `type Y = impl Trait<_>` and `type B = _;`
-#![feature(type_alias_impl_trait, associated_type_defaults)]
+#![feature(associated_type_defaults)]
+// revisions: min_tait full_tait
+#![feature(min_type_alias_impl_trait)]
+#![cfg_attr(full_tait, feature(type_alias_impl_trait))]
+//[full_tait]~^ WARN incomplete
 // This test checks that it is not possible to enable global type
 // inference by using the `_` type placeholder.