4
4
fn main ( ) { }
5
5
6
6
fn f1_1 ( x : isize , ...) { }
7
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
7
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
8
8
9
9
fn f1_2 ( ...) { }
10
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
10
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
11
11
12
12
extern "C" fn f2_1 ( x : isize , ...) { }
13
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
13
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
14
14
15
15
extern "C" fn f2_2 ( ...) { }
16
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
16
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
17
17
18
18
extern "C" fn f2_3 ( ..., x : isize ) { }
19
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
19
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
20
20
//~| ERROR `...` must be the last argument of a C-variadic function
21
21
22
22
extern "C" fn f3_1 ( x : isize , ...) { }
23
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
23
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
24
24
25
25
extern "C" fn f3_2 ( ...) { }
26
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
26
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
27
27
28
28
extern "C" fn f3_3 ( ..., x : isize ) { }
29
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
29
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
30
30
//~| ERROR `...` must be the last argument of a C-variadic function
31
31
32
32
const unsafe extern "C" fn f4_1 ( x : isize , ...) { }
@@ -35,12 +35,12 @@ const unsafe extern "C" fn f4_1(x: isize, ...) {}
35
35
36
36
const extern "C" fn f4_2 ( x : isize , ...) { }
37
37
//~^ ERROR functions cannot be both `const` and C-variadic
38
- //~| ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
38
+ //~| ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
39
39
//~| ERROR destructor of `VaListImpl<'_>` cannot be evaluated at compile-time
40
40
41
41
const extern "C" fn f4_3 ( ..., x : isize , ...) { }
42
42
//~^ ERROR functions cannot be both `const` and C-variadic
43
- //~| ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
43
+ //~| ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
44
44
//~| ERROR `...` must be the last argument of a C-variadic function
45
45
46
46
extern "C" {
@@ -52,34 +52,34 @@ struct X;
52
52
53
53
impl X {
54
54
fn i_f1 ( x : isize , ...) { }
55
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
55
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
56
56
fn i_f2 ( ...) { }
57
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
57
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
58
58
fn i_f3 ( ..., x : isize , ...) { }
59
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
59
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
60
60
//~| ERROR `...` must be the last argument of a C-variadic function
61
61
fn i_f4 ( ..., x : isize , ...) { }
62
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
62
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
63
63
//~| ERROR `...` must be the last argument of a C-variadic function
64
64
const fn i_f5 ( x : isize , ...) { }
65
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
65
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
66
66
//~| ERROR functions cannot be both `const` and C-variadic
67
67
//~| ERROR destructor of `VaListImpl<'_>` cannot be evaluated at compile-time
68
68
}
69
69
70
70
trait T {
71
71
fn t_f1 ( x : isize , ...) { }
72
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
72
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
73
73
fn t_f2 ( x : isize , ...) ;
74
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
74
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
75
75
fn t_f3 ( ...) { }
76
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
76
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
77
77
fn t_f4 ( ...) ;
78
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
78
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
79
79
fn t_f5 ( ..., x : isize ) { }
80
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
80
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
81
81
//~| ERROR `...` must be the last argument of a C-variadic function
82
82
fn t_f6 ( ..., x : isize ) ;
83
- //~^ ERROR only foreign or `unsafe extern "C"` functions may be C-variadic
83
+ //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind "` functions may have a C-variadic arg
84
84
//~| ERROR `...` must be the last argument of a C-variadic function
85
85
}
0 commit comments