Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
traits
/
default-method
/
mut.rs
blob: 1130ca0b4be2555395a634555b65cd69c278f1bb [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
unused_assignments
)]
#![
allow
(
unused_variables
)]
trait
Foo
{
fn
foo
(&
self
,
mut
v
:
isize
)
{
v
=
1
;
}
}
pub
fn
main
()
{}