blob: 2f5b3da95eeb012f12f0d00a7ac23a03642a2414 [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 Otherwise, the body of f is executed with this bound to o. The
* value of i is the result returned by the call to the getter function.
* @description Check that extracted getter value is call of the getter
* function
* @author sgrekhov@unipro.ru
*/
import '../../../../Utils/expect.dart';
class C {
int get g => 1;
}
main() {
C c = new C();
var f = c.g;
Expect.equals(1, f);
}