Слияние кода завершено, страница обновится автоматически
interface UserPreferences {
readonly importModuleSpecifierPreference: "shortest" | "project-relative" | "relative" | "non-relative";
readonly importModuleSpecifierEnding?: "minimal" | "index" | "js";
readonly jsxAttributeCompletionStyle?: "auto" | "braces" | "none";
}
class verify {
static importFixModuleSpecifiers(marker: string, moduleSpecifiers: string[], options?: UserPreferences): void {};
}
verify.importFixModuleSpecifiers("", ["#internals/example"], { importModuleSpecifierEnding: "js" });
// аварийное завершение программы
class A {
static foo222:()=>string;
}
class B extends A {
static foo222:()=>string;// аварийное завершение программы
}
let tup: [number, number, number] = [1, 2, 3, 4];
let SRr2:[number, number, number] = [1, 2, 3, ...tup];// аварийное завершение программы
В любом случае, компилятор не должен аварийно завершаться
используйте вышеуказанный файл теста
Вход Перед тем как оставить комментарий