Files
UXP-Fixed/dom/bindings/parser/tests/test_interface_const_identifier_conflicts.py
2018-02-02 04:16:08 -05:00

16 lines
353 B
Python

def WebIDLTest(parser, harness):
threw = False
try:
parser.parse("""
interface IdentifierConflict {
const byte thing1 = 1;
const unsigned long thing1 = 1;
};
""")
results = parser.finish()
except:
threw = True
harness.ok(threw, "Should have thrown.")