15 lines
252 B
Text
15 lines
252 B
Text
set_option linter.deprecated true
|
|
|
|
def f (x : Nat) := x + 1
|
|
|
|
@[deprecated f]
|
|
def g (x : Nat) := x + 1
|
|
|
|
#eval g 0 -- warning
|
|
|
|
set_option warningAsError true
|
|
|
|
#eval g 0 -- error
|
|
|
|
set_option linter.unusedVariables true
|
|
def h (unused : Nat) := 0 -- error
|