about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorSean Patrick Santos <SeanPatrickSantos@gmail.com>2015-05-07 01:52:38 -0600
committerSean Patrick Santos <SeanPatrickSantos@gmail.com>2015-05-07 01:57:54 -0600
commitefb3872a49df2d4ffe5bdc948d1d12637fa3ebd1 (patch)
tree27ad4a4ad7c1b3ea52e4139bb1bb0fbe4e2b1f5b /src/test
parent6b3d66b04f9ade6b3a46db4eb188e7397b44117a (diff)
downloadrust-efb3872a49df2d4ffe5bdc948d1d12637fa3ebd1.tar.gz
rust-efb3872a49df2d4ffe5bdc948d1d12637fa3ebd1.zip
Fix use of UFCS syntax to call methods on associated types.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/associated-item-long-paths.rs55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/test/run-pass/associated-item-long-paths.rs b/src/test/run-pass/associated-item-long-paths.rs
new file mode 100644
index 00000000000..4ad0187df7a
--- /dev/null
+++ b/src/test/run-pass/associated-item-long-paths.rs
@@ -0,0 +1,55 @@
+// Copyright 2015 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.
+
+use std::mem::size_of;
+
+// The main point of this test is to ensure that we can parse and resolve
+// associated items on associated types.
+
+trait Foo {
+    type U;
+}
+
+trait Bar {
+    // Note 1: Chains of associated items in a path won't type-check.
+    // Note 2: Associated consts can't depend on type parameters or `Self`,
+    // which are the only types that an associated type can be referenced on for
+    // now, so we can only test methods.
+    fn method() -> u32;
+    fn generic_method<T>() -> usize;
+}
+
+struct MyFoo;
+struct MyBar;
+
+impl Foo for MyFoo {
+    type U = MyBar;
+}
+
+impl Bar for MyBar {
+    fn method() -> u32 {
+        2u32
+    }
+    fn generic_method<T>() -> usize {
+        size_of::<T>()
+    }
+}
+
+fn foo<T>()
+    where T: Foo,
+          T::U: Bar,
+{
+    assert_eq!(2u32, <T as Foo>::U::method());
+    assert_eq!(8usize, <T as Foo>::U::generic_method::<f64>());
+}
+
+fn main() {
+    foo::<MyFoo>();
+}