import * as O from 'effect/Option';
import * as S from '@effect/schema/Schema';
// Type '{ readonly _tag: "None"; } | { readonly _tag: "Some"; readonly value: string; }' is not assignable to type 'Option<string>'. [2322]
const foo: S.Schema<O.Option<string>> = S.option(S.string);