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

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

6 lines
80 B
Rust
Raw Normal View History

enum Functions {
Square = |x| x, //~ ERROR mismatched types
}
fn main() {}