| Index: ppapi/generators/test_cgen/enum_typedef.idl
|
| ===================================================================
|
| --- ppapi/generators/test_cgen/enum_typedef.idl (revision 104195)
|
| +++ ppapi/generators/test_cgen/enum_typedef.idl (working copy)
|
| @@ -8,8 +8,8 @@
|
| * This file will test that the IDL snippet matches the comment.
|
| */
|
|
|
| -/* typedef enum { A = 1, B = 2, C = 3 } et1; */
|
| -enum et1 { A=1, B=2, C=3 };
|
| +/* typedef enum { A = 1, B = 2, C = 3, D = A + B, E = ~D } et1; */
|
| +enum et1 { A=1, B=2, C=3, D=A+B, E=~D };
|
|
|
| /* typedef int32_t i; */
|
| typedef int32_t i;
|
|
|