]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-2472.rs
Rollup merge of #105526 - Xiretza:iter-from-generator-derive, r=scottmcm
[rust.git] / tests / ui / issues / issue-2472.rs
1 // run-pass
2 // aux-build:issue-2472-b.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate issue_2472_b;
7
8 use issue_2472_b::{S, T};
9
10 pub fn main() {
11     let s = S(());
12     s.foo();
13     s.bar();
14 }