blob: 673ce37702d89c518820d0e9c51390468a456c25 [file] [log] [blame]
// @dart=2.19
void foo(String s) {
switch (s) {
case 'foo') {
print('foo');
} else {
print('bar');
}
}