rust/tests/ui/issues/issue-33504.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
137 B
Rust
Raw Normal View History

// Shadowing a unit-like enum in a closure
struct Test;
fn main() {
|| {
let Test = 1; //~ ERROR mismatched types
};
}