about summary refs log tree commit diff
path: root/tests/ui/attr-start.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/attr-start.rs')
-rw-r--r--tests/ui/attr-start.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/ui/attr-start.rs b/tests/ui/attr-start.rs
deleted file mode 100644
index 232f50955b2..00000000000
--- a/tests/ui/attr-start.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-//@ run-pass
-
-#![feature(start)]
-
-#[start]
-fn start(_argc: isize, _argv: *const *const u8) -> isize {
-    return 0;
-}