brintos

brintos / llvm-project-archived public Read only

0
0
Text · 264 B · 0f425bd Raw
14 lines · c
1// RUN: %clang_cc1 -triple=i686-linux-gnu -fsyntax-only -verify %s2// expected-no-diagnostics3 4// Check types are the same through redeclaration5unsigned long x;6__typeof(1u+1l) x;7 8unsigned y;9__typeof(1+1u) y;10__typeof(1u+1) y;11 12long long z;13__typeof(1ll+1u) z;14