Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
auxiliary
/
issue-2414-a.rs
blob: b90ab32ddc4ad64788018bbdb25601f464c74eb4 [
file
] [
log
] [
blame
] [
edit
]
#![
crate_name
=
"a"
]
#![
crate_type
=
"lib"
]
type
t1
=
usize
;
trait
foo
{
fn
foo
(&
self
);
}
impl
foo
for
String
{
fn
foo
(&
self
)
{}
}