mirror of
https://github.com/irmen/prog8.git
synced 2025-07-25 11:24:15 +00:00
@(..) argument must be of type UWORD
This commit is contained in:
@@ -143,8 +143,9 @@ main {
|
||||
}"""
|
||||
val errors = ErrorReporterForTests()
|
||||
compileText(C64Target(), false, text, writeAssembly = true, errors = errors)
|
||||
errors.errors.size shouldBe 1
|
||||
errors.errors[0] shouldContain "undefined symbol: doesnotexist"
|
||||
errors.errors.size shouldBe 2
|
||||
errors.errors[0] shouldContain "isn't uword"
|
||||
errors.errors[1] shouldContain "undefined symbol: doesnotexist"
|
||||
}
|
||||
|
||||
test("shifting by word value is ok") {
|
||||
|
Reference in New Issue
Block a user