``` type Demo struct{} func UseFunc[T any]() {} var value = new(Demo) UseFunc[value.(type)]() ``` _build error: invalid AST: use of .(type) outside type switch._ **Hope to support value.(type) in generics code.**