2016-04-26 10:51:14 -07:00
|
|
|
#![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;
|
2015-03-18 22:05:24 +01:00
|
|
|
}
|
2016-04-26 10:51:14 -07:00
|
|
|
|
|
|
|
|
pub type Object = Option<Box<Trait<Issue25467FooT=(),Issue25467BarT=()>>>;
|