2016-04-26 12:51:14 -05: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 16:05:24 -05:00
|
|
|
}
|
2016-04-26 12:51:14 -05:00
|
|
|
|
|
|
|
pub type Object = Option<Box<Trait<Issue25467FooT=(),Issue25467BarT=()>>>;
|