Files

21 lines
329 B
Python
Raw Permalink Normal View History

"""
Test that the bool() operator on nodes works as expected.
"""
from langkit.dsl import ASTNode
from utils import build_and_run
class FooNode(ASTNode):
pass
class Example(FooNode):
pass
build_and_run(lkt_file='expected_concrete_syntax.lkt', py_script='main.py',
types_from_lkt=True)
print('Done')