13 lines
217 B
Text
13 lines
217 B
Text
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
|