2015-12-22 17:17:27 -05:00
|
|
|
// Test that adding an impl to a trait `Foo` does not affect functions
|
2016-01-06 11:29:00 -05:00
|
|
|
// that only use `Bar`, so long as they do not have methods in common.
|
|
|
|
|
2021-09-19 09:57:19 -07:00
|
|
|
// incremental
|
|
|
|
// compile-flags: -Z query-dep-graph
|
2015-12-22 17:17:27 -05:00
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
|
|
fn main() { }
|
|
|
|
|
|
|
|
pub trait Foo: Sized {
|
|
|
|
fn foo(self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Bar: Sized {
|
|
|
|
fn bar(self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
mod x {
|
|
|
|
use {Foo, Bar};
|
|
|
|
|
|
|
|
#[rustc_if_this_changed]
|
|
|
|
impl Foo for char { }
|
|
|
|
|
|
|
|
impl Bar for char { }
|
|
|
|
}
|
|
|
|
|
|
|
|
mod y {
|
|
|
|
use {Foo, Bar};
|
|
|
|
|
2022-04-28 11:00:12 -04:00
|
|
|
#[rustc_then_this_would_need(typeck)] //~ ERROR OK
|
2015-12-22 17:17:27 -05:00
|
|
|
pub fn call_bar() {
|
|
|
|
char::bar('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 17:17:27 -05:00
|
|
|
pub fn z() {
|
|
|
|
y::call_bar();
|
|
|
|
}
|
|
|
|
}
|