summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs')
-rw-r--r--src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs b/src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs
index e58bba640..94ea0e93b 100644
--- a/src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs
+++ b/src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs
@@ -1,3 +1,4 @@
+// check-pass
// This test ensures that rustdoc does not panic on inherented associated types
// that are referred to without fully-qualified syntax.
@@ -9,8 +10,4 @@ pub struct Struct;
impl Struct {
pub type AssocTy = usize;
pub const AssocConst: Self::AssocTy = 42;
- //~^ ERROR ambiguous associated type
- //~| HELP use fully-qualified syntax
- //~| ERROR ambiguous associated type
- //~| HELP use fully-qualified syntax
}