]> git.lizzy.rs Git - rust.git/commitdiff
Add a test for issue #18865. Fixes #18865.
authorNiko Matsakis <niko@alum.mit.edu>
Sat, 3 Jan 2015 11:07:07 +0000 (06:07 -0500)
committerNiko Matsakis <niko@alum.mit.edu>
Mon, 5 Jan 2015 16:31:37 +0000 (11:31 -0500)
src/test/compile-fail/associated-types-invalid-trait-ref-issue-18865.rs [new file with mode: 0644]

diff --git a/src/test/compile-fail/associated-types-invalid-trait-ref-issue-18865.rs b/src/test/compile-fail/associated-types-invalid-trait-ref-issue-18865.rs
new file mode 100644 (file)
index 0000000..8afd861
--- /dev/null
@@ -0,0 +1,26 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// Test that we report an error if the trait ref in an qualified type
+// uses invalid type arguments.
+
+#![feature(associated_types)]
+
+trait Foo<T> {
+    type Bar;
+    fn get_bar(&self) -> Self::Bar;
+}
+
+fn f<T:Foo<int>>(t: &T) {
+    let u: <T as Foo<uint>>::Bar = t.get_bar();
+    //~^ ERROR the trait `Foo<uint>` is not implemented for the type `T`
+}
+
+fn main() { }