We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dceed56 + f720a90 commit 7ea4e43Copy full SHA for 7ea4e43
lib/Sema/TypeCheckConstraints.cpp
@@ -54,7 +54,9 @@ using namespace constraints;
54
#pragma mark Type variable implementation
55
56
void TypeVariableType::Implementation::print(llvm::raw_ostream &OS) {
57
- getTypeVariable()->print(OS, PrintOptions());
+ PrintOptions PO;
58
+ PO.PrintTypesForDebugging = true;
59
+ getTypeVariable()->print(OS, PO);
60
61
SmallVector<TypeVariableOptions, 4> bindingOptions;
62
if (canBindToLValue())
0 commit comments