summaryrefslogtreecommitdiffstats
path: root/dom/bindings/parser/tests/test_interface_const_identifier_conflicts.py
diff options
context:
space:
mode:
Diffstat (limited to 'dom/bindings/parser/tests/test_interface_const_identifier_conflicts.py')
-rw-r--r--dom/bindings/parser/tests/test_interface_const_identifier_conflicts.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/dom/bindings/parser/tests/test_interface_const_identifier_conflicts.py b/dom/bindings/parser/tests/test_interface_const_identifier_conflicts.py
new file mode 100644
index 0000000000..6388af2139
--- /dev/null
+++ b/dom/bindings/parser/tests/test_interface_const_identifier_conflicts.py
@@ -0,0 +1,17 @@
+def WebIDLTest(parser, harness):
+ threw = False
+ try:
+ parser.parse(
+ """
+ interface IdentifierConflict {
+ const byte thing1 = 1;
+ const unsigned long thing1 = 1;
+ };
+ """
+ )
+
+ parser.finish()
+ except Exception:
+ threw = True
+
+ harness.ok(threw, "Should have thrown.")