summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-consts/projection-unspecified-but-bounded.rs
blob: b1a0f39962b617b951a54d295c2c890212997d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(associated_const_equality)]

// Issue 110549

pub trait TraitWAssocConst {
    const A: usize;
}

fn foo<T: TraitWAssocConst<A = 32>>() {}

fn bar<T: TraitWAssocConst>() {
    foo::<T>();
    //~^ ERROR type mismatch resolving `<T as TraitWAssocConst>::A == 32`
}

fn main() {}