Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-102354.rs
blob: f881feb0060abc2cba308a8bd4a25460efd24aef [
file
] [
log
] [
blame
] [
edit
]
trait
Trait
{
fn
func
()
{}
}
impl
Trait
for
i32
{}
fn
main
()
{
let
x
:
i32
=
123
;
x
.
func
();
//~ERROR no method
}