TypeWitnessSystem: Disable by default

This commit is contained in:
Anthony Latsis
2022-03-24 16:39:25 +03:00
parent b83137c5ad
commit 38e48ac15d
8 changed files with 1008 additions and 330 deletions

View File

@@ -352,6 +352,10 @@ namespace swift {
/// Enable variadic generics.
bool EnableExperimentalVariadicGenerics = false;
/// Enable experimental associated type inference using type witness
/// systems.
bool EnableExperimentalAssociatedTypeInference = false;
/// Disable the implicit import of the _Concurrency module.
bool DisableImplicitConcurrencyModuleImport =
!SWIFT_IMPLICIT_CONCURRENCY_IMPORT;