// // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // declarationErrors.c -- // // Author : Peter A. Buhr // Created On : Wed Aug 17 08:23:43 2016 // Last Modified By : Peter A. Buhr // Last Modified On : Thu Aug 25 18:16:40 2016 // Update Count : 5 // static short int volatile static const x9; // duplicate static struct { int i; } const static volatile static x18; // duplicate static struct { int i; } const static volatile static volatile x19; // duplicate static & volatile typedef int Int; static Int volatile static const x28; // duplicate static const static inline const volatile int f01(); // duplicate const volatile inline const volatile static int f02(); // duplicate volatile const inline const volatile int static f03(); // duplicate const volatile inline static const volatile int f04(); // duplicate volatile const static const inline volatile int f05(); // duplicate const volatile static const volatile inline int f06(); // duplicate volatile const static const volatile int inline f07(); // duplicate const volatile static const int inline const volatile f08(); // duplicate volatile volatile static const int inline const volatile f09(); // duplicate volatile volatile static const int inline const volatile f09(); // duplicate volatile //Dummy main int main(int argc, char const *argv[]) { return 0; } // Local Variables: // // tab-width: 4 // // compile-command: "cfa declarationErrors.c" // // End: //