aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/def_type_quals.good
blob: dda00e82b1d96ae63b8a346dfdd6367760e910f1 (plain)
1
2
3
4
5
6
7
8
9


typedef a = const int;
typedef b = const (int a, int b);
typedef c = (int x, const int c);
typedef d = (int x, const (int, int) c);
typedef e = const enum(yes, no);
typedef f = const int enum(yes, no);