You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import Qq
open Qq
deffoo (a : Q(Bool)) : Prop := true
example : Prop :=
let a : Q(Nat) := q(23)
have := foo a
have := foo q($a)
false
the line that says foo a is totally fine, but foo q($a) errors as expected. It'd be nice if I didn't have to requote everything to get the type errors!
The text was updated successfully, but these errors were encountered:
mwe:
the line that says
foo a
is totally fine, butfoo q($a)
errors as expected. It'd be nice if I didn't have to requote everything to get the type errors!The text was updated successfully, but these errors were encountered: