This commit is contained in:
Michael Pankov 2017-04-15 19:10:32 +03:00
parent 21cd68bb82
commit a5952bf7c0

View File

@ -428,6 +428,8 @@ mod tests {
use function1;
use function2;
use std::sync::Arc;
#[test]
fn simple_function() {
let mut lua = Lua::new();
@ -562,7 +564,7 @@ mod tests {
}
}
{
let foo = ::std::sync::Arc::new(Foo { });
let foo = Arc::new(Foo { });
{
let mut lua = Lua::new();