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