A test file is fixed

This commit is contained in:
Youngsoo Son 2013-05-10 16:55:59 +09:00
parent c8e93edf55
commit 4400bbd72a

View file

@ -10,7 +10,7 @@
// Testing that we can't store a borrowed pointer it task-local storage
use core::task::local_data::*;
use core::local_data::*;
fn key(_x: @&int) { }
@ -18,4 +18,4 @@ fn main() {
unsafe {
local_data_set(key, @&0); //~ ERROR does not fulfill `'static`
}
}
}