summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pub/pub-ident-fn-with-lifetime.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/pub/pub-ident-fn-with-lifetime.rs')
-rw-r--r--src/test/ui/pub/pub-ident-fn-with-lifetime.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/pub/pub-ident-fn-with-lifetime.rs b/src/test/ui/pub/pub-ident-fn-with-lifetime.rs
new file mode 100644
index 000000000..63e6eca15
--- /dev/null
+++ b/src/test/ui/pub/pub-ident-fn-with-lifetime.rs
@@ -0,0 +1,8 @@
+// run-rustfix
+
+pub foo<'a>(_s: &'a usize) -> bool { true }
+//~^ ERROR missing `fn` for function definition
+
+fn main() {
+ foo(&2);
+}