| 39 | TypeParamType TypeParamB() { return TypeParamType("B"); } |
| 40 | |
| 41 | Type ListOfA() { |
| 42 | static absl::NoDestructor<Type> kInstance( |
| 43 | ListType(BuiltinsArena(), TypeParamA())); |
| 44 | return *kInstance; |
| 45 | } |
| 46 | |
| 47 | Type MapOfAB() { |
| 48 | static absl::NoDestructor<Type> kInstance( |
no test coverage detected