mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
14 lines
227 B
Rust
14 lines
227 B
Rust
//@ known-bug: #130967
|
|
|
|
trait Producer {
|
|
type Produced;
|
|
fn make_one() -> Self::Produced;
|
|
}
|
|
|
|
impl<E: ?Sized> Producer for () {
|
|
type Produced = Option<E>;
|
|
fn make_one() -> Self::Produced {
|
|
loop {}
|
|
}
|
|
}
|