Skip to content

Commit 4083c69

Browse files
authored
Rollup merge of rust-lang#58906 - Nemo157:generator-state-debug-info, r=Zoxc
Monomorphize generator field types for debuginfo Fixes rust-lang#58888 r? @Zoxc
2 parents 4bff63f + 41e60d1 commit 4083c69

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

src/librustc_codegen_ssa/mir/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,7 @@ fn arg_local_refs<'a, 'tcx: 'a, Bx: BuilderMethods<'a, 'tcx>>(
679679
.zip(state_tys)
680680
.enumerate()
681681
.filter_map(move |(i, (decl, ty))| {
682+
let ty = fx.monomorphize(&ty);
682683
decl.name.map(|name| (i + upvar_count + 1, name, false, ty))
683684
})
684685
}).into_iter().flatten();
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// run-pass
2+
// compile-flags: -g
3+
4+
#![feature(generators, generator_trait)]
5+
6+
use std::ops::Generator;
7+
8+
struct Database;
9+
10+
impl Database {
11+
fn get_connection(&self) -> impl Iterator<Item = ()> {
12+
Some(()).into_iter()
13+
}
14+
15+
fn check_connection(&self) -> impl Generator<Yield = (), Return = ()> + '_ {
16+
move || {
17+
let iter = self.get_connection();
18+
for i in iter {
19+
yield i
20+
}
21+
}
22+
}
23+
}
24+
25+
fn main() {
26+
Database.check_connection();
27+
}

0 commit comments

Comments
 (0)