about summary refs log tree commit diff
path: root/src/test/ui/nll/user-annotations/normalization-default.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/user-annotations/normalization-default.rs')
-rw-r--r--src/test/ui/nll/user-annotations/normalization-default.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/nll/user-annotations/normalization-default.rs b/src/test/ui/nll/user-annotations/normalization-default.rs
deleted file mode 100644
index fa52e6d857f..00000000000
--- a/src/test/ui/nll/user-annotations/normalization-default.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-// check-fail
-
-trait Trait { type Assoc; }
-impl<'a> Trait for &'a () { type Assoc = &'a (); }
-
-struct MyTuple<T, U = <&'static () as Trait>::Assoc>(T, U);
-fn test_tuple(x: &(), y: &()) {
-    MyTuple::<_>((), x);
-    //~^ ERROR
-    let _: MyTuple::<_> = MyTuple((), y);
-    //~^ ERROR
-}
-
-struct MyStruct<T, U = <&'static () as Trait>::Assoc> { val: (T, U), }
-fn test_struct(x: &(), y: &()) {
-    MyStruct::<_> { val: ((), x) };
-    //~^ ERROR
-    let _: MyStruct::<_> = MyStruct { val: ((), y) };
-    //~^ ERROR
-}
-
-fn main() {}