- Fix bug when converting from vector to distinct type of wider vector. #2604

This commit is contained in:
Christoffer Lerno
2025-11-27 16:40:55 +01:00
parent 0b52819090
commit 6e4614b6a4
3 changed files with 12 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
typedef Foo = char[<4>];
fn int main()
{
int[<4>] a;
Foo f = (Foo)a;
return 0;
}
fn void thing() {}