const schema = pipe(
S.struct({ a: S.string }),
S.extend(S.struct({ a: S.number, b: S.number }))
)
// Duplicate property signature "a"
const schema = pipe(
S.struct({ a: S.string }),
S.extend(S.struct({ a: S.number, b: S.number }))
)
// Duplicate property signature "a"