blob: 5f0a5527b59c4497366ceb9338ad84e2a3de6f92 [file] [log] [blame]
// Copyright (c) 2016, 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 the cast expression e as T proceeds as follows:
/// The expression e is evaluated to a value v.
/// Then, if T is malformed or deferred type, a dynamic error occurs.
/// Otherwise, if the interface of the class of v is a subtype of T, the cast
/// expression evaluates to v.
/// Otherwise, if v is null, the cast expression evaluates to v.
/// In all other cases, a CastError is thrown.
/// @description Checks that if T is deferred type, then a compile error occurs.
/// @author ngl@unipro.ru
import '../lib.dart' deferred as lb;
class B {}
main() {
new B() as lb.A;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}