blob: 5b5c6f75825dd4b38adc892a9b17c31c01a1bc76 [file] [edit]
// 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.
method(o) {
switch (o) {
case String a:
print(a);
break;
case int a:
print(a);
break;
}
}