buzz icon indicating copy to clipboard operation
buzz copied to clipboard

Generic not populated inside function

Open giann opened this issue 1 year ago • 0 comments

fun hey::<T>() > void {
    [T] list = [];
    debug.dump(typeof list);
}

hey::<int>();

gives

type: 0x101d78400 `[generic type #18-0]`

expected

type: 0x101d78400 `[int]`

giann avatar Mar 13 '24 13:03 giann