blob: 6446720a815e75fe411fd50cab7c4ec7fb4250aa [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -triple pic16-unknown-unknown
Eli Friedmana95d7572009-08-19 07:44:53 +00002
3// Check that unsigned short promotes to unsigned int on targets where
4// sizeof(unsigned short) == sizeof(unsigned int)
5__typeof(1+(unsigned short)1) x;
6unsigned x;