Sign in
android
/
toolchain
/
rustc
/
977026a81a6cc1c304420586c1bb6527b72b4303
/
.
/
src
/
test
/
ui
/
impl-trait
/
extra-item.rs
blob: d82237ccecc7ddd14dad8eaa3298a6e265f9c10c [
file
] [
log
] [
blame
]
// aux-build:extra-item.rs
// compile-flags:--extern extra_item
struct
S
;
impl
extra_item
::
MyTrait
for
S
{
fn
extra
()
{}
//~ ERROR method `extra` is not a member of trait `extra_item::MyTrait`
}
fn
main
()
{}