TypeScript/tests/cases/compiler/switchComparableCompatForBrands.ts

14 lines
172 B
TypeScript
Raw Normal View History

class MyBrand
{
private _a: number;
}
function test(strInput: string & MyBrand) {
switch(strInput)
{
case "a":
return 1;
}
return 0;
}