blob: e320835be0160626a027329a614bd996e40f4cf1 [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.
class GetName {
set flif(_) => "flif=";
}
String getName(im) => im.invokeOn(new GetName());
class C {
var im;
noSuchMethod(im) => this.im = im;
flif() {}
}
main() {
var c = new C();
c.flif = 42;
Expect.equals('flif=', getName(c.im));
Expect.equals(42, c.im.positionalArguments[0]);
}