summaryrefslogtreecommitdiffstats
path: root/src/test/ui/empty/empty-comment.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/empty/empty-comment.rs')
-rw-r--r--src/test/ui/empty/empty-comment.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/empty/empty-comment.rs b/src/test/ui/empty/empty-comment.rs
deleted file mode 100644
index 174274d28..000000000
--- a/src/test/ui/empty/empty-comment.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// `/**/` was previously regarded as a doc comment because it starts with `/**` and ends with `*/`.
-// This could break some internal logic that assumes the length of a doc comment is at least 5,
-// leading to an ICE.
-
-macro_rules! one_arg_macro {
- ($fmt:expr) => (print!(concat!($fmt, "\n")));
-}
-
-fn main() {
- one_arg_macro!(/**/); //~ ERROR unexpected end
-}