blob: bde172bae62dd2b1f2613a62d735b086ffe1fbc9 [file] [log] [blame]
/*
* Copyright (c) 2015, 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.
*/
/**
* @assertion Evaluation of a property extraction i of the form e.m proceeds
* as follows: ...
* If method lookup succeeds then i evaluates to the closurization of method
* f on object o
* @description Check that if lookup succeeds then method f of library object
* o is called
* @author sgrekhov@unipro.ru
*/
import '../../../../Utils/expect.dart';
import 'method_lookup_lib.dart' as lib;
main() {
lib.C c = new lib.C();
var f = c.m1;
Expect.isNotNull(f);
Expect.equals(1, f());
}