Added more tests
This commit is contained in:
parent
b886637dc3
commit
0b4b3343c4
3 changed files with 12 additions and 0 deletions
3
tests/errors/UnknownIdentifier3.q
Normal file
3
tests/errors/UnknownIdentifier3.q
Normal file
|
@ -0,0 +1,3 @@
|
|||
main() {
|
||||
x := 1 + f(x)
|
||||
}
|
7
tests/errors/UnknownIdentifier4.q
Normal file
7
tests/errors/UnknownIdentifier4.q
Normal file
|
@ -0,0 +1,7 @@
|
|||
main() {
|
||||
x := 1 + f(x)
|
||||
}
|
||||
|
||||
f(x) {
|
||||
return x
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue