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