mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 02:33:55 +00:00
11 lines
269 B
Rust
11 lines
269 B
Rust
#![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=()>>>;
|