summaryrefslogtreecommitdiffstats
path: root/tests/ui/chalkify/lower_struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/chalkify/lower_struct.rs')
-rw-r--r--tests/ui/chalkify/lower_struct.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/chalkify/lower_struct.rs b/tests/ui/chalkify/lower_struct.rs
new file mode 100644
index 000000000..6be0d4dd5
--- /dev/null
+++ b/tests/ui/chalkify/lower_struct.rs
@@ -0,0 +1,8 @@
+// check-pass
+// compile-flags: -Z trait-solver=chalk
+
+struct Foo<'a, T> where Box<T>: Clone {
+ _x: std::marker::PhantomData<&'a T>,
+}
+
+fn main() { }