blob: 6f62d6e0da1c1543228e1b55e26bcc95ffbd74e4 [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 {
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]);
}