blob: 395d47495ac1f4843ca3be1441c49b30d4666c50 [file] [log] [blame]
// Copyright (c) 2012, 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.
import "package:expect/expect.dart";
main() {
Expect.isTrue(null is Object);
Expect.isFalse(null is int);
Expect.isFalse(null is bool);
Expect.isFalse(null is num);
Expect.isFalse(null is String);
Expect.isFalse(null is List);
Expect.isFalse(null is Expect);
}