blob: 83363c27e154379a35d9a0204addf6ba2b37c019 [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 It is a compile-time error if m is a member of class Object and
/// e is either a prefix object or a constant type literal.
/// @description Check that it is a compile-time error if in expression e.m
/// e is a library prefix and m is Object's runtimeType property
/// @issue 24332
/// @author sgrekhov@unipro.ru
import 'instance_of_type_lib.dart' as lib;
main() {
var x = lib.runtimeType;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}