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.
|
|
|
|
|
|
2024-02-16 20:02:50 +00: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 {
|
2025-06-02 10:11:10 +02:00
|
|
|
use crate::{Foo, Bar};
|
2015-12-22 17:17:27 -05:00
|
|
|
|
|
|
|
|
#[rustc_if_this_changed]
|
|
|
|
|
impl Foo for char { }
|
|
|
|
|
|
|
|
|
|
impl Bar for char { }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod y {
|
2025-06-02 10:11:10 +02:00
|
|
|
use crate::{Foo, Bar};
|
2015-12-22 17:17:27 -05:00
|
|
|
|
2023-11-21 23:40:23 +03:00
|
|
|
#[rustc_then_this_would_need(typeck)] //~ ERROR no path
|
2015-12-22 17:17:27 -05:00
|
|
|
pub fn call_bar() {
|
|
|
|
|
char::bar('a');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod z {
|
2025-06-02 10:11:10 +02:00
|
|
|
use crate::y;
|
2015-12-22 17:17:27 -05:00
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|