blob: d9c6fafd7670345fd7c76cd7f620fec6b8300b72 [file] [log] [blame]
// Copyright (c) 2012, 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.
import "package:expect/expect.dart";
class C {
late Invocation im;
noSuchMethod(im) => this.im = im;
flif() {}
}
main() {
dynamic c = new C();
c.flif = 42;
Expect.equals(const Symbol("flif="), c.im.memberName);
Expect.equals(42, c.im.positionalArguments[0]);
}