blob: fa2daeb11e9165e540c930357894d6fe2d3bc5ad [file] [log] [blame]
// run-pass
// Check that global bounds result in the expected choice of associated type
#![feature(trivial_bounds)]
#![allow(unused)]
struct B;
trait A {
type X;
fn get_x() -> Self::X;
}
impl A for B {
type X = u8;
fn get_x() -> u8 { 0 }
}
fn underspecified_bound() -> u8
where
B: A
{
B::get_x()
}
fn inconsistent_bound() -> i32
where
B: A<X = i32>
{
B::get_x()
}
fn redundant_bound() -> u8
where
B: A<X = u8>
{
B::get_x()
}
fn inconsistent_dup_bound() -> i32
where
B: A<X = i32> + A
{
B::get_x()
}
fn redundant_dup_bound() -> u8
where
B: A<X = u8> + A
{
B::get_x()
}
fn main () {}