Skip to content

Commit 351f603

Browse files
committed
testsuite: Update core to std
1 parent 403aee1 commit 351f603

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/run-pass/issue-4735.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// except according to those terms.
1010

1111

12-
use core::cast::transmute;
13-
use core::libc::c_void;
12+
use std::cast::transmute;
13+
use std::libc::c_void;
1414

1515
struct NonCopyable(*c_void);
1616

src/test/run-pass/issue-5554.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use core::num::Zero;
11+
use std::num::Zero;
1212

1313
pub struct X<T> {
1414
a: T

0 commit comments

Comments
 (0)