summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0069.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0069.rs')
-rw-r--r--src/test/ui/error-codes/E0069.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/ui/error-codes/E0069.rs b/src/test/ui/error-codes/E0069.rs
new file mode 100644
index 000000000..a4ba9fd8d
--- /dev/null
+++ b/src/test/ui/error-codes/E0069.rs
@@ -0,0 +1,7 @@
+fn foo() -> u8 {
+ return;
+ //~^ ERROR `return;` in a function whose return type is not `()`
+}
+
+fn main() {
+}