2015-01-04 04:22:59 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-26 20:34:27 -05:00
|
|
|
#![feature(slice_patterns)]
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|