1cb93a386Sopenharmony_ci// Expect 6 errors
2cb93a386Sopenharmony_ci
3cb93a386Sopenharmony_ciuint uintMin         = 0;
4cb93a386Sopenharmony_ciuint uintMinMinusOne = -1;                             // error
5cb93a386Sopenharmony_ciuint uintMax         = 4294967295;
6cb93a386Sopenharmony_ciuint uintMaxPlusOne  = 4294967296;                     // error
7cb93a386Sopenharmony_ci
8cb93a386Sopenharmony_ciushort4 us4_neg = ushort4(2, 1, 0, -1);                // error -1
9cb93a386Sopenharmony_ciushort4 us4_pos = ushort4(65536, 65535, 65534, 65533); // error 65536
10cb93a386Sopenharmony_ci
11cb93a386Sopenharmony_ciuint   cast_int   = uint(4294967296.);                 // error
12cb93a386Sopenharmony_ciushort cast_short = ushort(65536.);                    // error
13