implemented deprecated and property __declspec's
[cparser] / parsetest / MS / declspec.c
1 int __declspec(align(4)) x;
2
3 int __declspec(dllimport) y;
4 int __declspec(dllexport, align(4)) z;
5
6 int __declspec(noinline, naked, deprecated("Mist"))func(void);
7
8 struct x {
9         int __declspec(property(get=get_a, put=put_a)) a;
10 };