blob: fe47a886ecc4903c3fdf56985fbbdbe3a218c74e [file] [log] [blame]
// Copyright (c) 2017, 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.
// @dart = 2.9
/// @assertion Type runtimeType
/// A representation of the runtime type of the object.
/// @description Checks that the correct [Type] is returned.
/// @author ngl@unipro.ru
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var obj = new Float64x2List(2);
var type = obj.runtimeType;
Expect.isTrue(type is Type);
Expect.stringEquals("Float64x2List", obj.runtimeType.toString());
}