Index: ppapi/generators/test_parser/dictionary.idl |
diff --git a/ppapi/generators/test_parser/dictionary.idl b/ppapi/generators/test_parser/dictionary.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8fc6f156378ad329f8a249e3267c20bc3b13dcb7 |
--- /dev/null |
+++ b/ppapi/generators/test_parser/dictionary.idl |
@@ -0,0 +1,17 @@ |
+/* Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+dictionary MyDict { |
+ /* OK Member(setString) */ |
+ DOMString setString; |
+ /* OK Member(unsetLong) */ |
+ long unsetLong; |
+}; |
+ |
+/* FAIL Unexpected "}" after symbol unsetLong. */ |
+dictionary MyDict { |
+ DOMString setString; |
+ long unsetLong |
+}; |