```go type T string t := T("what") tt := reflect.TypeOf(t) fmt.Println(tt) // prints string, should be main.T ```