blob: 67251bc95eb24d0da4194ad6df5b181b9daed601 [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 The result of a lookup of a method m in object o with respect
/// to library L is the result of a lookup of method m in class C with respect
/// to library L, where C is the class of o.
/// @description Checks that result of a lookup of a method m in object o
/// is method m in class C, where C is class of o
/// @author sgrekhov@unipro.ru
import '../../../../Utils/expect.dart';
class C1 {
int m() => 1;
}
class C2 {
int m() => 2;
}
main() {
C1 c1 = new C1();
C2 c2 = new C2();
Expect.equals(1, c1.m());
Expect.equals(2, c2.m());
}