2016-01-06 16:29:00 +00:00
|
|
|
// Test that adding an impl to a trait `Foo` DOES affect functions
|
|
|
|
// that only use `Bar` if they have methods in common.
|
|
|
|
|
2021-09-19 16:57:19 +00:00
|
|
|
// incremental
|
|
|
|
// compile-flags: -Z query-dep-graph
|
2015-12-22 22:17:27 +00:00
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![allow(dead_code)]
|
2016-04-19 13:43:10 +00:00
|
|
|
#![allow(unused_imports)]
|
2015-12-22 22:17:27 +00:00
|
|
|
|
|
|
|
fn main() { }
|
|
|
|
|
|
|
|
pub trait Foo: Sized {
|
|
|
|
fn method(self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Bar: Sized {
|
|
|
|
fn method(self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
mod x {
|
|
|
|
use {Foo, Bar};
|
|
|
|
|
|
|
|
#[rustc_if_this_changed]
|
|
|
|
impl Foo for u32 { }
|
|
|
|
|
|
|
|
impl Bar for char { }
|
|
|
|
}
|
|
|
|
|
|
|
|
mod y {
|
|
|
|
use {Foo, Bar};
|
|
|
|
|
2020-07-17 08:47:04 +00:00
|
|
|
#[rustc_then_this_would_need(typeck)] //~ ERROR OK
|
2015-12-22 22:17:27 +00:00
|
|
|
pub fn with_char() {
|
|
|
|
char::method('a');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod z {
|
|
|
|
use y;
|
|
|
|
|
2020-07-17 08:47:04 +00:00
|
|
|
#[rustc_then_this_would_need(typeck)] //~ ERROR no path
|
2015-12-22 22:17:27 +00:00
|
|
|
pub fn z() {
|
|
|
|
y::with_char();
|
|
|
|
}
|
|
|
|
}
|