summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/user-annotations/method-ufcs-inherent-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/user-annotations/method-ufcs-inherent-2.rs')
-rw-r--r--src/test/ui/nll/user-annotations/method-ufcs-inherent-2.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/nll/user-annotations/method-ufcs-inherent-2.rs b/src/test/ui/nll/user-annotations/method-ufcs-inherent-2.rs
deleted file mode 100644
index cfbc0bcf6..000000000
--- a/src/test/ui/nll/user-annotations/method-ufcs-inherent-2.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Check that substitutions given on the self type (here, `A`) can be
-// used in combination with annotations given for method arguments.
-
-struct A<'a> { x: &'a u32 }
-
-impl<'a> A<'a> {
- fn new<'b, T>(x: &'a u32, y: T) -> Self {
- Self { x }
- }
-}
-
-fn foo<'a>() {
- let v = 22;
- let x = A::<'a>::new::<&'a u32>(&v, &v);
- //~^ ERROR
- //~| ERROR
-}
-
-fn main() {}