2015-02-17 23:48:32 +11:00
|
|
|
fn assert_static<T: 'static>(_t: T) {}
|
2015-01-04 05:22:59 -05:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let line = String::new();
|
2015-02-01 21:53:25 -05:00
|
|
|
match [&*line] { //~ ERROR `line` does not live long enough
|
2015-02-17 23:48:32 +11:00
|
|
|
[ word ] => { assert_static(word); }
|
2015-01-04 05:22:59 -05:00
|
|
|
}
|
|
|
|
|
}
|