blob: 1ab02cff15b53e662bed92c0ae996968a0e6f99e [file] [log] [blame]
typedef Nullable = Object?;
exhaustiveByValue(Null n) => switch (n) { };
exhaustiveByType(Null n) => switch (n) { };
exhaustiveWithField(Null n) => switch (n) { };
nonExhaustiveRestrictedField(Null n) => switch (n) { };
exhaustiveNullable(Object? o) => switch (o) { };
nonExhaustiveNullable(Object? o) => switch (o) { };
nonExhaustiveNullableRestricted(Object? o) => switch (o) { };