* feat: allow upper case single character identifiers when relaxedAutoImplicit false * update tests * fix tests * fix another test --------- Co-authored-by: Scott Morrison <scott.morrison@anu.edu.au>
9 lines
159 B
Text
9 lines
159 B
Text
def f (x : A) := x
|
|
|
|
set_option relaxedAutoImplicit false
|
|
|
|
def g (x : A) := x
|
|
def h (x : AA) := x
|
|
def i (x : A1) := x
|
|
def j (x : A₁) := x
|
|
def k (x : A') := x
|