Preview:```ts
type Data = {
//[k:string] : never
a:number
b:number
}
function foo1<T extends Data >(o:T) {}
function foo2<const T extends Data >(o:T) {}
foo1({a:8,b:4, gf:8}) // i want error gf is not in Data
foo2({a:8,b:4, gf:8}) // i want error gf is not in Data```
You can choose specific lines to embed by selecting them before copying the link.
