mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-14 19:16:17 -06:00
Added test.
This commit is contained in:
parent
c9eb846094
commit
60962a8709
22
tests/cases/compiler/omitTypeHelperModifiers01.ts
Normal file
22
tests/cases/compiler/omitTypeHelperModifiers01.ts
Normal file
@ -0,0 +1,22 @@
|
||||
// @strict: true
|
||||
|
||||
type A = {
|
||||
a: number;
|
||||
b?: string;
|
||||
readonly c: boolean;
|
||||
d: unknown;
|
||||
};
|
||||
|
||||
type B = Omit<A, 'a'>;
|
||||
|
||||
function f(x: B) {
|
||||
const b = x.b;
|
||||
x.b = "hello";
|
||||
x.b = undefined;
|
||||
|
||||
const c = x.c;
|
||||
x.c = true;
|
||||
|
||||
const d = x.d;
|
||||
x.d = d;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user