blob: ca9b3097c830ff3fb1f2a1687420e13063f6b1ee [file] [log] [blame]
#![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=()>>>;