rust/tests/ui/issues/issue-41652/auxiliary/issue-41652-b.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
170 B
Rust
Raw Normal View History

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;
}