blob: 6a03f6cbfeae46ee2f29d5544cca1554da1cb6f6 [file] [log] [blame]
method(int? i) => switch (i) {
== null => null,
!= null => i,
_ => null,
};