blob: 7eaff73dca187771f88973d9ad79aad3ac16c512 [file] [log] [blame]
//@ aux-build:other.rs
extern crate other;
use other::Foo;
fn take_foo(_: impl Foo) {}
fn main() {
take_foo(());
//~^ERROR Message
}