summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/ambiguous-inherent-assoc-ty.rs
blob: e58bba640585388f4329ce4dba355cc067bead13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This test ensures that rustdoc does not panic on inherented associated types
// that are referred to without fully-qualified syntax.

#![feature(inherent_associated_types)]
#![allow(incomplete_features)]

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
}