Cleanup of naming change to optional. Fix of builtin optional handling.

This commit is contained in:
Christoffer Lerno
2022-12-27 23:55:23 +01:00
parent fe54b84aed
commit f622b3bd4c
58 changed files with 432 additions and 416 deletions

View File

@@ -0,0 +1,8 @@
fn void main()
{
float x;
x = $$fma(x, x, x);
float! y;
y = $$fma(x, x, y);
x = $$fma(x, x, y); // #error: 'float!'
}