package prog8tests.ast import io.kotest.core.spec.style.FunSpec import io.kotest.matchers.shouldBe import prog8.ast.base.Position import prog8.ast.statements.InlineAssembly class TestVarious: FunSpec({ test("symbol names in inline assembly blocks") { val names1 = InlineAssembly(""" """, Position.DUMMY).names names1 shouldBe emptySet() val names2 = InlineAssembly(""" label: lda #