File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,25 @@ libc::c_long;
58
58
, mode3 : * const c_char ,
59
59
file : * mut FILE )
60
60
-> * mut FILE ;
61
+
62
+
63
+ async fn foo (
64
+
65
+ ) -> * mut
66
+ Bar ;
67
+ const fn foo (
68
+
69
+ ) ->
70
+ * mut Bar ;
71
+ unsafe fn foo (
72
+
73
+ ) -> *
74
+ mut
75
+ Bar ;
76
+
77
+ pub async fn foo ( ) -> * mut Bar ;
78
+ pub ( super ) const fn foo ( ) -> * mut Bar ;
79
+ pub ( crate ) unsafe fn foo ( ) -> * mut Bar ;
61
80
}
62
81
63
82
extern {
Original file line number Diff line number Diff line change @@ -73,6 +73,14 @@ extern "C" {
73
73
mode3 : * const c_char ,
74
74
file : * mut FILE ,
75
75
) -> * mut FILE ;
76
+
77
+ async fn foo ( ) -> * mut Bar ;
78
+ const fn foo ( ) -> * mut Bar ;
79
+ unsafe fn foo ( ) -> * mut Bar ;
80
+
81
+ pub async fn foo ( ) -> * mut Bar ;
82
+ pub ( super ) const fn foo ( ) -> * mut Bar ;
83
+ pub ( crate ) unsafe fn foo ( ) -> * mut Bar ;
76
84
}
77
85
78
86
extern "C" { }
You can’t perform that action at this time.
0 commit comments