2013-12-31 12:40:10 -08:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
mod inner {
|
|
|
|
pub trait Trait {
|
|
|
|
fn f(&self) { f(); }
|
2015-11-05 18:17:33 +03:00
|
|
|
fn f_ufcs(&self) { f_ufcs(); }
|
2013-12-31 12:40:10 -08:00
|
|
|
}
|
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
impl Trait for isize {}
|
2013-12-31 12:40:10 -08:00
|
|
|
|
|
|
|
fn f() {}
|
2015-11-05 18:17:33 +03:00
|
|
|
fn f_ufcs() {}
|
2013-12-31 12:40:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn foo<T: inner::Trait>(t: T) {
|
|
|
|
t.f();
|
|
|
|
}
|
2015-11-05 18:17:33 +03:00
|
|
|
pub fn foo_ufcs<T: inner::Trait>(t: T) {
|
|
|
|
T::f_ufcs(&t);
|
|
|
|
}
|