blob: f53be7d3f117d2448f317afae93402012e720fd2 [file] [log] [blame]
// Copyright (c) 2020, 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.9
class C {}
extension E on C {
void f(String b) {}
}
void main() {
dynamic b = '456';
var c = C();
c.f(b);
}