summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/normalization-bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/normalization-bounds.rs')
-rw-r--r--src/test/ui/nll/normalization-bounds.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/nll/normalization-bounds.rs b/src/test/ui/nll/normalization-bounds.rs
new file mode 100644
index 000000000..bb6d981e0
--- /dev/null
+++ b/src/test/ui/nll/normalization-bounds.rs
@@ -0,0 +1,15 @@
+// Check that lifetime bounds get checked the right way around with NLL enabled.
+
+// check-pass
+
+trait Visitor<'d> {
+ type Value;
+}
+
+impl<'a, 'd: 'a> Visitor<'d> for &'a () {
+ type Value = ();
+}
+
+fn visit_seq<'d: 'a, 'a>() -> <&'a () as Visitor<'d>>::Value {}
+
+fn main() {}