```rust fn foo() -> impl MyTrait { panic!(); MyStruct } struct MyStruct; trait MyTrait {} impl MyTrait for MyStruct {} ```
For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.
```rust fn foo() -> impl MyTrait { panic!(); MyStruct } struct MyStruct; trait MyTrait {} impl MyTrait for MyStruct {} ```
For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.