Skip to content

Commit 101f83e

Browse files
committed
Fix a missing un-xfailed case
Issue #1230
1 parent 7d227f2 commit 101f83e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/run-pass/bind-native-fn.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
// From #1174:
2-
// xfail-test bots are crashing on this on x86_64
32

43
use std;
54
import str;
65
import libc::*;
76

87
#[nolink]
98
native mod libc {
10-
fn write(fd: c_int, buf: *u8, nbyte: size_t);
9+
fn write(fd: core::libc::c_int, buf: *u8, nbyte: core::libc::size_t);
1110
}
1211

1312
fn main() {

0 commit comments

Comments
 (0)