blob: ca9b3097c830ff3fb1f2a1687420e13063f6b1ee (
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<Trait<Issue25467FooT=(),Issue25467BarT=()>>>;
|