13 lines
144 B
Text
13 lines
144 B
Text
inductive SomeType
|
|
| x : SomeType
|
|
|
|
namespace SomeType
|
|
|
|
def a : SomeType := SomeType.x
|
|
|
|
end SomeType
|
|
|
|
#eval SomeType.b
|
|
|
|
def f (x : Nat) :=
|
|
x.z
|