Whether the string literal's type is fixed
wstring x = "abc"; // OK, string literal is flexible wstring y = cast(string) "abc"; // Error: type was committed after cast
See Implementation
Whether the string literal's type is fixed