2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(unused_assignments)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2016-08-13 02:41:43 -07:00
|
|
|
#![allow(unused_variables)]
|
2013-07-07 22:26:15 -04:00
|
|
|
|
|
|
|
|
trait Foo {
|
2015-03-25 17:06:52 -07:00
|
|
|
fn foo(&self, mut v: isize) { v = 1; }
|
2013-07-07 22:26:15 -04:00
|
|
|
}
|
|
|
|
|
|
2013-09-25 00:43:37 -07:00
|
|
|
pub fn main() {}
|