diff options
Diffstat (limited to 'tests/ui/pub/pub-ident-fn-or-struct-2.rs')
-rw-r--r-- | tests/ui/pub/pub-ident-fn-or-struct-2.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/pub/pub-ident-fn-or-struct-2.rs b/tests/ui/pub/pub-ident-fn-or-struct-2.rs new file mode 100644 index 000000000..8f67cdd29 --- /dev/null +++ b/tests/ui/pub/pub-ident-fn-or-struct-2.rs @@ -0,0 +1,4 @@ +pub S(); +//~^ ERROR missing `fn` or `struct` for function or struct definition + +fn main() {} |