BUG: 无法正确构造struct
import woo.std;
using List<T> = struct{
e: T,
next: option<List<T>>,
};
let a = List:<string>{e = "Hello", next = option::none};
import woo.std;
using List<T> = struct{
e: T,
next: option<List<T>>,
};
let a = List:<string>{e = "Hello", next = option::none};