]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/associated-types-path-2.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / associated-types-path-2.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11// Test type checking of uses of associated types via sugary paths.
12
13pub trait Foo {
14 type A;
85aaf69f
SL
15
16 fn dummy(&self) { }
1a4d82fc
JJ
17}
18
85aaf69f
SL
19impl Foo for i32 {
20 type A = u32;
1a4d82fc
JJ
21}
22
23pub fn f1<T: Foo>(a: T, x: T::A) {}
24pub fn f2<T: Foo>(a: T) -> T::A {
25 panic!();
26}
27
28pub fn f1_int_int() {
85aaf69f
SL
29 f1(2i32, 4i32);
30 //~^ ERROR mismatched types
31 //~| expected u32
32 //~| found i32
1a4d82fc
JJ
33}
34
35pub fn f1_int_uint() {
85aaf69f 36 f1(2i32, 4u32);
1a4d82fc
JJ
37}
38
39pub fn f1_uint_uint() {
85aaf69f 40 f1(2u32, 4u32);
54a0048b 41 //~^ ERROR `u32: Foo` is not satisfied
1a4d82fc
JJ
42}
43
44pub fn f1_uint_int() {
85aaf69f 45 f1(2u32, 4i32);
54a0048b 46 //~^ ERROR `u32: Foo` is not satisfied
1a4d82fc
JJ
47}
48
49pub fn f2_int() {
85aaf69f
SL
50 let _: i32 = f2(2i32);
51 //~^ ERROR mismatched types
52 //~| expected `i32`
53 //~| found `u32`
1a4d82fc
JJ
54}
55
56pub fn main() { }