]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-72076.rs
Rollup merge of #106699 - eholk:await-chains-drop-tracking, r=wesleywiser
[rust.git] / tests / ui / issues / issue-72076.rs
1 trait X {
2     type S;
3     fn f() -> Self::S {} //~ ERROR mismatched types
4 }
5
6 fn main() {}