mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 01:42:54 +03:00
64c5b9a3d6
```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.