blob: bf905a871dabe870f31d7db213a74a5f33c1cebd [file] [log] [blame]
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.19
method(e) {
switch (e) {
case 0:
print(0);
case 1:
print(1);
case 2:
print(2);
}
}