mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 13:34:38 +00:00
```rust
fn foo() -> impl MyTrait {
panic!();
MyStruct
}
struct MyStruct;
trait MyTrait {}
impl MyTrait for MyStruct {}
```
For more information about how rustc works, see the rustc dev guide.