2024-09-06 11:56:43 -04:00
|
|
|
//@ aux-build:foreign-trait-with-assoc.rs
|
|
|
|
|
|
|
|
|
|
extern crate foreign_trait_with_assoc;
|
|
|
|
|
use foreign_trait_with_assoc::Foo;
|
|
|
|
|
|
2025-04-08 12:23:07 +10:00
|
|
|
// Make sure we don't try to call `fn_arg_idents` on a non-fn item.
|
2024-09-06 11:56:43 -04:00
|
|
|
|
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
//~^ ERROR cannot find type `Bar` in this scope
|
|
|
|
|
|
|
|
|
|
fn main() {}
|