mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
29 lines
565 B
Rust
29 lines
565 B
Rust
// run-pass
|
|
// compile-flags: -g
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
|
|
|
#![feature(generators, generator_trait)]
|
|
|
|
use std::ops::Generator;
|
|
|
|
struct Database;
|
|
|
|
impl Database {
|
|
fn get_connection(&self) -> impl Iterator<Item = ()> {
|
|
Some(()).into_iter()
|
|
}
|
|
|
|
fn check_connection(&self) -> impl Generator<Yield = (), Return = ()> + '_ {
|
|
move || {
|
|
let iter = self.get_connection();
|
|
for i in iter {
|
|
yield i
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
Database.check_connection();
|
|
}
|