mirror of
https://github.com/reactos/syzkaller.git
synced 2025-03-04 01:27:22 +00:00

Add handling of user types that has underlying primitive types. Consider: type T int var obj interface{} = T(42) T has kind reflect.Int. But if we serialize obj as just "42", it will be turned into plain int. Detect this case and serialize obj as "T(42)".