We were not reporting unassigned metavariables due to 1- `_` 2- Named holes (e.g., `?x`) 3- Implicit arguments
11 lines
150 B
Text
11 lines
150 B
Text
new_frontend
|
||
|
||
def f (x : Nat) : Nat :=
|
||
id (_ x)
|
||
|
||
def g {α β : Type} (a : α) : α :=
|
||
a
|
||
|
||
def f3 (x : Nat) : Nat :=
|
||
let y := g x + g x;
|
||
y + _ + ?hole
|