// @experimentalDecorators: true interface I { prototype: T, m: () => T } function dec(c: I) { } @dec class C { _brand: any; static m() {} }