about summary refs log tree commit diff
path: root/src/test/ui/rustdoc/doc-alias-same-name.rs
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2021-03-05 10:04:22 -0500
committerJoshua Nelson <jyn514@gmail.com>2021-03-08 09:17:04 -0500
commitbc1fbf55db9671be7bb04bbf5f68b48f8ee17b2e (patch)
tree52ebdd60eb1597aa9470cd71d2e371f9b367f7c0 /src/test/ui/rustdoc/doc-alias-same-name.rs
parent66ec64ccf31883cd2c28d045912a76179c0c6ed2 (diff)
downloadrust-bc1fbf55db9671be7bb04bbf5f68b48f8ee17b2e.tar.gz
rust-bc1fbf55db9671be7bb04bbf5f68b48f8ee17b2e.zip
Move rustdoc UI tests into a subdirectory
This also adds a little leeway to the test limit.
Diffstat (limited to 'src/test/ui/rustdoc/doc-alias-same-name.rs')
-rw-r--r--src/test/ui/rustdoc/doc-alias-same-name.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/ui/rustdoc/doc-alias-same-name.rs b/src/test/ui/rustdoc/doc-alias-same-name.rs
new file mode 100644
index 00000000000..da97c267618
--- /dev/null
+++ b/src/test/ui/rustdoc/doc-alias-same-name.rs
@@ -0,0 +1,4 @@
+#![crate_type = "lib"]
+
+#[doc(alias = "Foo")] //~ ERROR
+pub struct Foo;