This should pass: ```ts expectTypeOf<(() => 1) & {x: 1}>().not.toEqualTypeOf<() => 1>() ``` Or more importantly this should fail: ```ts expectTypeOf<(() => 1) & {x: 1}>().toEqualTypeOf<() => 1>() ```
This should pass:
Or more importantly this should fail: