Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Shadowing a unit-like enum in a closure
struct Test;
fn main() {
|| {
let Test = 1; //~ ERROR mismatched types
};
}