rust/tests/ui/diagnostic_namespace/on_unimplemented/error_is_shown_in_downstrea...

13 lines
145 B
Rust

//@ aux-build:other.rs
extern crate other;
use other::Foo;
fn take_foo(_: impl Foo) {}
fn main() {
take_foo(());
//~^ERROR Message
}