aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3663.rs
blob: 0f0559c933934e2ebafa06e8d1e166e262b54262 (plain)
1
2
3
4
5
6
pub trait TypeFn {}

impl TypeFn for Output<{ 42 }> {
    // { dg-error "could not resolve type path .Output. .E0412." "" { target *-*-* } .-1 }
    type Output = ();
}