d7ccc3ca6a
This reverts commit 1989b7f376.
Reason for revert: Bots are sad, red, and purple
Original change's description:
> Fix orphaned files in tests/language/ and tests/language_2/.
>
> Some of these should be tests but were missing "_test". Others seemed
> to simply be dead code. Some should have been referenced but there were
> mistakes in the imports in other files.
>
> Change-Id: If6f1d9e52a4babbf9883ddd437fc3091179f2ef2
> Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/198141
> Auto-Submit: Bob Nystrom <rnystrom@google.com>
> Commit-Queue: Bob Nystrom <rnystrom@google.com>
> Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
TBR=lrn@google.com,leafp@google.com,rnystrom@google.com
Change-Id: I8d63af684023e99849addf9d1c3f87d6bcfbe89d
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/200531
Reviewed-by: Ben Konyi <bkonyi@google.com>
19 lines
689 B
Dart
19 lines
689 B
Dart
// Copyright (c) 2019, 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.
|
|
|
|
|
|
// Test that it is an error to do what was once allowed as an "implicit
|
|
// downcast."
|
|
main() {
|
|
num asNum = 1;
|
|
Object asObject = 1;
|
|
dynamic asDynamic = 1;
|
|
int asInt1 = asNum; //# 01: compile-time error
|
|
double asDouble1 = asNum; //# 02: compile-time error
|
|
int asInt2 = asObject; //# 03: compile-time error
|
|
double asDouble2 = asObject; //# 04: compile-time error
|
|
String asString1 = asObject; //# 05: compile-time error
|
|
int asInt3 = asDynamic; //# 06: ok
|
|
}
|