1cb93a386Sopenharmony_ciuniform float unknownInput;
2cb93a386Sopenharmony_ci
3cb93a386Sopenharmony_civoid main() {
4cb93a386Sopenharmony_ci    bool b = true;
5cb93a386Sopenharmony_ci    short s = short(unknownInput);
6cb93a386Sopenharmony_ci    int i = int(unknownInput);
7cb93a386Sopenharmony_ci    ushort us = ushort(unknownInput);
8cb93a386Sopenharmony_ci    uint ui = uint(unknownInput);
9cb93a386Sopenharmony_ci    half h = half(unknownInput);
10cb93a386Sopenharmony_ci    float f = unknownInput;
11cb93a386Sopenharmony_ci    short s2s = s;
12cb93a386Sopenharmony_ci    short i2s = short(i);
13cb93a386Sopenharmony_ci    short us2s = short(us);
14cb93a386Sopenharmony_ci    short ui2s = short(ui);
15cb93a386Sopenharmony_ci    short h2s = short(h);
16cb93a386Sopenharmony_ci    short f2s = short(f);
17cb93a386Sopenharmony_ci    short b2s = short(b);
18cb93a386Sopenharmony_ci    int s2i = s;
19cb93a386Sopenharmony_ci    int i2i = i;
20cb93a386Sopenharmony_ci    int us2i = int(us);
21cb93a386Sopenharmony_ci    int ui2i = int(ui);
22cb93a386Sopenharmony_ci    int h2i = int(h);
23cb93a386Sopenharmony_ci    int f2i = int(f);
24cb93a386Sopenharmony_ci    int b2i = int(b);
25cb93a386Sopenharmony_ci    ushort s2us = ushort(s);
26cb93a386Sopenharmony_ci    ushort i2us = ushort(i);
27cb93a386Sopenharmony_ci    ushort us2us = us;
28cb93a386Sopenharmony_ci    ushort ui2us = ushort(ui);
29cb93a386Sopenharmony_ci    ushort h2us = ushort(h);
30cb93a386Sopenharmony_ci    ushort f2us = ushort(f);
31cb93a386Sopenharmony_ci    ushort b2us = ushort(b);
32cb93a386Sopenharmony_ci    uint s2ui = uint(s);
33cb93a386Sopenharmony_ci    uint i2ui = uint(i);
34cb93a386Sopenharmony_ci    uint us2ui = us;
35cb93a386Sopenharmony_ci    uint ui2ui = ui;
36cb93a386Sopenharmony_ci    uint h2ui = uint(h);
37cb93a386Sopenharmony_ci    uint f2ui = uint(f);
38cb93a386Sopenharmony_ci    uint b2ui = uint(b);
39cb93a386Sopenharmony_ci    float s2f = float(s);
40cb93a386Sopenharmony_ci    float i2f = float(i);
41cb93a386Sopenharmony_ci    float us2f = float(us);
42cb93a386Sopenharmony_ci    float ui2f = float(ui);
43cb93a386Sopenharmony_ci    float h2f = float(h);
44cb93a386Sopenharmony_ci    float f2f = float(f);
45cb93a386Sopenharmony_ci    float b2f = float(b);
46cb93a386Sopenharmony_ci
47cb93a386Sopenharmony_ci    sk_FragColor.r = half(s) + half(i) + half(us) + half(ui) + half(h) + half(f) + half(s2s) +
48cb93a386Sopenharmony_ci                     half(i2s) + half(us2s) + half(ui2s) + half(h2s) + half(f2s) + half(b2s) +
49cb93a386Sopenharmony_ci                     half(s2i) + half(i2i) + half(us2i) + half(ui2i) + half(h2i) + half(f2i) +
50cb93a386Sopenharmony_ci                     half(b2i) + half(s2us) + half(i2us) + half(us2us);
51cb93a386Sopenharmony_ci    sk_FragColor.r += half(ui2us) + half(h2us) + half(f2us) + half(b2us) + half(s2ui) + half(i2ui) +
52cb93a386Sopenharmony_ci                      half(us2ui) + half(ui2ui) + half(h2ui) + half(f2ui) + half(b2ui) + half(s2f) +
53cb93a386Sopenharmony_ci                      half(i2f) + half(us2f) + half(ui2f) + half(h2f) + half(f2f) + half(b2f);
54cb93a386Sopenharmony_ci}
55