test279
auto test279 =
q{--- test279.vx
// issue 42. Call expression of index expression didn't account for different template kinds and always assumed function template
struct Vector[T] {
T* ptr;
u64 capacity;
u64 length;
}
void main() {
Vector[i32] numbers = Vector[i32](null, 10, 0);
}
};
tests passing
functionsvariables