summaryrefslogtreecommitdiffstats
path: root/src/test/ui/chalkify/type_wf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/chalkify/type_wf.rs')
-rw-r--r--src/test/ui/chalkify/type_wf.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/ui/chalkify/type_wf.rs b/src/test/ui/chalkify/type_wf.rs
new file mode 100644
index 000000000..dd83a03fd
--- /dev/null
+++ b/src/test/ui/chalkify/type_wf.rs
@@ -0,0 +1,25 @@
+// check-fail
+// compile-flags: -Z chalk
+
+trait Foo { }
+
+struct S<T: Foo> {
+ x: T,
+}
+
+impl Foo for i32 { }
+impl<T> Foo for Option<T> { }
+
+fn main() {
+ let s = S {
+ x: 5,
+ };
+
+ let s = S { //~ ERROR the trait bound `{float}: Foo` is not satisfied
+ x: 5.0,
+ };
+
+ let s = S {
+ x: Some(5.0),
+ };
+}