File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 393191d914a14aa1a0ad10ffe54ff23940671353
2
+ refs/heads/master: 112d01a9510192c1e410c6e51e2b2f4d36bc6b63
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: b6400f998497c3958f40997a71756ead344a776d
5
5
refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ to the C library and afterwards be invoked from there.
263
263
A basic example is:
264
264
265
265
Rust code:
266
- ~~~~
266
+ ~~~~ {.xfail-test}
267
267
extern fn callback(a:i32) {
268
268
println!("I'm called from C with value {0}", a);
269
269
}
@@ -283,7 +283,7 @@ fn main() {
283
283
~~~~
284
284
285
285
C code:
286
- ~~~~
286
+ ~~~~ {.xfail-test}
287
287
typedef void (*rust_callback)(int32_t);
288
288
rust_callback cb;
289
289
@@ -314,7 +314,7 @@ the notification. This will provide a unsafe possibility to access the
314
314
referenced Rust object in callback.
315
315
316
316
Rust code:
317
- ~~~~
317
+ ~~~~ {.xfail-test}
318
318
319
319
struct RustObject {
320
320
a: i32,
@@ -346,7 +346,7 @@ fn main() {
346
346
~~~~
347
347
348
348
C code:
349
- ~~~~
349
+ ~~~~ {.xfail-test}
350
350
typedef void (*rust_callback)(int32_t);
351
351
void* cb_target;
352
352
rust_callback cb;
You can’t perform that action at this time.
0 commit comments