summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-41652/auxiliary/issue-41652-b.rs
blob: 2ce21b0366ee60f85fa34178b856723c06377761 (plain)
1
2
3
4
5
6
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;
}