Update ui tests

This commit is contained in:
Guillaume Gomez 2019-10-31 10:39:46 +01:00
parent 5dfb167bf3
commit fcbf77ef16
3 changed files with 6 additions and 3 deletions

View file

@ -1,4 +1,4 @@
error: only foreign functions are allowed to be C-variadic
error[E0743]: only foreign functions are allowed to be C-variadic
--> $DIR/invalid-variadic-function.rs:1:26
|
LL | extern "C" fn foo(x: u8, ...);
@ -12,3 +12,4 @@ LL | extern "C" fn foo(x: u8, ...);
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0743`.

View file

@ -1,4 +1,4 @@
error: only foreign functions are allowed to be C-variadic
error[E0743]: only foreign functions are allowed to be C-variadic
--> $DIR/variadic-ffi-3.rs:1:18
|
LL | fn foo(x: isize, ...) {
@ -6,3 +6,4 @@ LL | fn foo(x: isize, ...) {
error: aborting due to previous error
For more information about this error, try `rustc --explain E0743`.

View file

@ -1,4 +1,4 @@
error: only foreign functions are allowed to be C-variadic
error[E0743]: only foreign functions are allowed to be C-variadic
--> $DIR/variadic-ffi-4.rs:1:29
|
LL | extern "C" fn foo(x: isize, ...) {
@ -6,3 +6,4 @@ LL | extern "C" fn foo(x: isize, ...) {
error: aborting due to previous error
For more information about this error, try `rustc --explain E0743`.