This PR adjusts the experimental module system to elide theorem bodies (i.e. proofs) from being imported into other modules.
11 lines
140 B
Text
11 lines
140 B
Text
module
|
|
|
|
/-! Module docstring -/
|
|
|
|
/-- A definition. -/
|
|
def f := 1
|
|
|
|
/-- A theorem. -/
|
|
theorem t : f = 1 := sorry
|
|
|
|
theorem trfl : f = 1 := rfl
|