Files
sdk/tests/lib_2/html/non_instantiated_is_test.dart
T
Jakob Roland Andersen 56c8922c7c Migrated test batch 208 to Dart 2.0.
Bug:
Change-Id: I97b3ca0d43bf68a60cdc2959844888c82c6af9eb
Reviewed-on: https://dart-review.googlesource.com/10260
Reviewed-by: Florian Loitsch <floitsch@google.com>
Commit-Queue: Jakob Roland Andersen <jakobr@google.com>
2017-10-03 10:23:49 +00:00

17 lines
467 B
Dart

// Copyright (c) 2013, 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.
// Regression test for dart2js, that used to emit wrong code on is
// checks of native classes that are not instantiated.
import 'dart:html';
import 'package:expect/expect.dart';
var a = [new Object()];
main() {
Expect.isFalse(a[0] is Node);
}