Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* The following are all valid decls, even though some subtypes
  2.    are incomplete.  */
  3. enum E *e;
  4. const enum E *e1;
  5. enum E const *e2;
  6. struct S *s;
  7. const struct S *s1;
  8. struct S const *s2;
  9. int main () { return 0; }
  10.