xref: /aosp_15_r20/external/skia/resources/sksl/errors/GenericArgumentMismatch.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1void sin_int_int() { float x = sin(1, 2); }
2void sin_bool()    { float x = sin(true); }
3
4
5/*%%*
6no match for sin(int, int)
7no match for sin(bool)
8*%%*/
9