mirror of
https://github.com/github/semantic.git
synced 2024-12-18 20:31:55 +03:00
c2a3608154
I discovered a test file in tree-sitter-haskell I overlooked while assigning semantic.
9 lines
200 B
Haskell
9 lines
200 B
Haskell
g = if b then 1 else 2
|
|
g = if b; then c; else d
|
|
g = if (if b then c else d) then e else f
|
|
g = if if b then c else d then e else f
|
|
|
|
h' :: [a] -> a
|
|
h' [] = error "No head for empty lists!"
|
|
h' (x:_) = x
|