Files
c3c/test/test_suite/builtins/builtin_with_optional.c3

8 lines
122 B
Plaintext

fn void main()
{
float x;
x = $$fma(x, x, x);
float! y;
y = $$fma(x, x, y);
x = $$fma(x, x, y); // #error: 'float!'
}