diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-12-07 16:04:25 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-12-07 16:04:25 -0500 |
| commit | 37f3e91f6c95d46f161dbde05b0a005fe7e7c17a (patch) | |
| tree | c6e080ebbe7aed267b8ca0c5aec80fece51a5f65 /test/structs.tm | |
| parent | a201939a8150bc4c2f221925797ea2751c74b77c (diff) | |
Rename "NONE" to "none"
Diffstat (limited to 'test/structs.tm')
| -rw-r--r-- | test/structs.tm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/structs.tm b/test/structs.tm index afbb1a86..de220b11 100644 --- a/test/structs.tm +++ b/test/structs.tm @@ -2,11 +2,11 @@ struct Single(x:Int) struct Pair(x,y:Int) struct Mixed(x:Int, text:Text) -struct LinkedList(x:Int, next=NONE:@LinkedList) +struct LinkedList(x:Int, next=none:@LinkedList) struct Password(text:Text; secret) struct CorecursiveA(other:@CorecursiveB?) -struct CorecursiveB(other=NONE:@CorecursiveA) +struct CorecursiveB(other=none:@CorecursiveA) func test_literals(): >> Single(123) |
