summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-1703.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-1703.rs')
-rw-r--r--src/tools/rustfmt/tests/target/issue-1703.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/issue-1703.rs b/src/tools/rustfmt/tests/target/issue-1703.rs
new file mode 100644
index 000000000..4079ef4cf
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-1703.rs
@@ -0,0 +1,9 @@
+// rustfmt should not remove doc comments or comments inside attributes.
+
+/**
+This function has a block doc comment.
+ */
+fn test_function() {}
+
+#[foo /* do not remove this! */]
+fn foo() {}