diff --git a/tests/idl4/default_literal/test.idl b/tests/idl4/default_literal/test.idl new file mode 100644 index 00000000..48c02485 --- /dev/null +++ b/tests/idl4/default_literal/test.idl @@ -0,0 +1,21 @@ +/** + * @file test.idl + * @author Johnny Willemsen + * + * @copyright Copyright (c) Remedy IT Expertise BV + */ + +enum Color { + GREEN, + @default_literal RED, + BLUE +}; + +typedef Color ColorArray[5]; +typedef sequence ColorSeq; + +struct Shape { + Color color_red; + ColorArray color_red_array; + ColorSeq color_seq; +};