about summary refs log tree commit diff
path: root/tests/ui/issues/auxiliary/issue-25467.rs
blob: 16c2869dc75cc3a6668a80c377d5ff94200e6fca (plain)
1
2
3
4
5
6
7
8
9
10
#![crate_type="lib"]

pub trait Trait {
    // the issue is sensitive to interning order - so use names
    // unlikely to appear in libstd.
    type Issue25467FooT;
    type Issue25467BarT;
}

pub type Object = Option<Box<dyn Trait<Issue25467FooT=(),Issue25467BarT=()>>>;