Sync from rust 37b2813a7b
This commit is contained in:
commit
85c708132f
@ -104,6 +104,15 @@ const fn jit_bin(config: &'static str, source: &'static str, args: &'static str)
|
|||||||
runner.run_out_command("polymorphize_coroutine", &[]);
|
runner.run_out_command("polymorphize_coroutine", &[]);
|
||||||
}),
|
}),
|
||||||
TestCase::build_bin_and_run("aot.neon", "example/neon.rs", &[]),
|
TestCase::build_bin_and_run("aot.neon", "example/neon.rs", &[]),
|
||||||
|
TestCase::custom("aot.gen_block_iterate", &|runner| {
|
||||||
|
runner.run_rustc([
|
||||||
|
"example/gen_block_iterate.rs",
|
||||||
|
"--edition",
|
||||||
|
"2024",
|
||||||
|
"-Zunstable-options",
|
||||||
|
]);
|
||||||
|
runner.run_out_command("gen_block_iterate", &[]);
|
||||||
|
}),
|
||||||
];
|
];
|
||||||
|
|
||||||
pub(crate) static RAND_REPO: GitRepo = GitRepo::github(
|
pub(crate) static RAND_REPO: GitRepo = GitRepo::github(
|
||||||
|
@ -44,6 +44,7 @@ aot.issue-72793
|
|||||||
aot.issue-59326
|
aot.issue-59326
|
||||||
aot.polymorphize_coroutine
|
aot.polymorphize_coroutine
|
||||||
aot.neon
|
aot.neon
|
||||||
|
aot.gen_block_iterate
|
||||||
|
|
||||||
testsuite.extended_sysroot
|
testsuite.extended_sysroot
|
||||||
test.rust-random/rand
|
test.rust-random/rand
|
||||||
|
36
example/gen_block_iterate.rs
Normal file
36
example/gen_block_iterate.rs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// Copied from https://github.com/rust-lang/rust/blob/46455dc65069387f2dc46612f13fd45452ab301a/tests/ui/coroutine/gen_block_iterate.rs
|
||||||
|
// revisions: next old
|
||||||
|
//compile-flags: --edition 2024 -Zunstable-options
|
||||||
|
//[next] compile-flags: -Ztrait-solver=next
|
||||||
|
// run-pass
|
||||||
|
#![feature(gen_blocks)]
|
||||||
|
|
||||||
|
fn foo() -> impl Iterator<Item = u32> {
|
||||||
|
gen { yield 42; for x in 3..6 { yield x } }
|
||||||
|
}
|
||||||
|
|
||||||
|
fn moved() -> impl Iterator<Item = u32> {
|
||||||
|
let mut x = "foo".to_string();
|
||||||
|
gen move {
|
||||||
|
yield 42;
|
||||||
|
if x == "foo" { return }
|
||||||
|
x.clear();
|
||||||
|
for x in 3..6 { yield x }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let mut iter = foo();
|
||||||
|
assert_eq!(iter.next(), Some(42));
|
||||||
|
assert_eq!(iter.next(), Some(3));
|
||||||
|
assert_eq!(iter.next(), Some(4));
|
||||||
|
assert_eq!(iter.next(), Some(5));
|
||||||
|
assert_eq!(iter.next(), None);
|
||||||
|
// `gen` blocks are fused
|
||||||
|
assert_eq!(iter.next(), None);
|
||||||
|
|
||||||
|
let mut iter = moved();
|
||||||
|
assert_eq!(iter.next(), Some(42));
|
||||||
|
assert_eq!(iter.next(), None);
|
||||||
|
|
||||||
|
}
|
@ -1,4 +1,7 @@
|
|||||||
ignore = ["y.rs"]
|
ignore = [
|
||||||
|
"y.rs",
|
||||||
|
"example/gen_block_iterate.rs", # uses edition 2024
|
||||||
|
]
|
||||||
|
|
||||||
# Matches rustfmt.toml of rustc
|
# Matches rustfmt.toml of rustc
|
||||||
version = "Two"
|
version = "Two"
|
||||||
|
Loading…
Reference in New Issue
Block a user