1// Applying sizeof to the result of sizeof makes no sense
2//
3// Confidence: High
4// Copyright: (C) Gilles Muller, Julia Lawall, EMN, INRIA, DIKU.  GPLv2.
5// URL: http://coccinelle.lip6.fr/rules/sizeof.html
6// Options:
7
8@@
9expression E;
10@@
11
12- sizeof (
13  sizeof (E)
14- )
15
16@@
17type T;
18@@
19
20- sizeof (
21  sizeof (T)
22- )
23