This website requires JavaScript.
Explore
Help
Register
Sign In
rust-lang
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Actions
1
Packages
Projects
Releases
Wiki
Activity
Files
fd1a263fc7029b06a8f041feadbcc85c65b0a6e8
rust
/
tests
/
ui
/
coroutine
/
issue-91477.rs
8 lines
95 B
Rust
Raw
Normal View
History
Unescape
Escape
s/generator/coroutine/
2023-10-19 21:46:28 +00:00
#![
feature(coroutines)
]
Fix ICE when yielding in fn returning impl Trait
2021-12-02 22:33:40 -08:00
fn
foo
(
)
->
impl
Sized
{
yield
1
;
//~ ERROR E0627
}
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink