1cb93a386Sopenharmony_cistruct S { float f; }; 2cb93a386Sopenharmony_ci 3cb93a386Sopenharmony_civoid not_a_field() { S s; s.missing = 123; } 4cb93a386Sopenharmony_civoid not_a_function() { S s; s.f(); } 5cb93a386Sopenharmony_civoid not_a_bvec() { S s; s.f = bool3(true); } 6cb93a386Sopenharmony_civoid not_a_struct() { S s; s.f.missing; } 7cb93a386Sopenharmony_civoid not_an_array() { S s; s.f[0]; } 8