summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-12997-1.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-12997-1.stderr')
-rw-r--r--src/test/ui/issues/issue-12997-1.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-12997-1.stderr b/src/test/ui/issues/issue-12997-1.stderr
new file mode 100644
index 000000000..00c605174
--- /dev/null
+++ b/src/test/ui/issues/issue-12997-1.stderr
@@ -0,0 +1,14 @@
+error: functions used as benches must have signature `fn(&mut Bencher) -> impl Termination`
+ --> $DIR/issue-12997-1.rs:8:1
+ |
+LL | fn foo() { }
+ | ^^^^^^^^^^^^
+
+error: functions used as benches must have signature `fn(&mut Bencher) -> impl Termination`
+ --> $DIR/issue-12997-1.rs:11:1
+ |
+LL | fn bar(x: isize, y: isize) { }
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+