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