]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/associated-types-path-2.rs
Imported Upstream version 1.10.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
a7813a04 31 //~| expected u32, found i32
1a4d82fc
JJ
32}
33
34pub fn f1_int_uint() {
85aaf69f 35 f1(2i32, 4u32);
1a4d82fc
JJ
36}
37
38pub fn f1_uint_uint() {
85aaf69f 39 f1(2u32, 4u32);
54a0048b 40 //~^ ERROR `u32: Foo` is not satisfied
1a4d82fc
JJ
41}
42
43pub fn f1_uint_int() {
85aaf69f 44 f1(2u32, 4i32);
54a0048b 45 //~^ ERROR `u32: Foo` is not satisfied
1a4d82fc
JJ
46}
47
48pub fn f2_int() {
85aaf69f
SL
49 let _: i32 = f2(2i32);
50 //~^ ERROR mismatched types
a7813a04 51 //~| expected i32, found u32
1a4d82fc
JJ
52}
53
54pub fn main() { }