7 lines
170 B
Rust
7 lines
170 B
Rust
|
pub trait Tr {
|
||
|
// Note: The function needs to be declared over multiple lines to reproduce
|
||
|
// the crash. DO NOT reformat.
|
||
|
fn f()
|
||
|
where Self: Sized;
|
||
|
}
|