blob: 1a867c7f9189fef09c954550f9789cb0f2191fba [file] [log] [blame]
/*
* 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.
*/
/**
* @assertion Type runtimeType
* A representation of the runtime type of the object.
* @description Checks that [runtimeType] is read-only and can not be set.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
dynamic obj = new Int16List(0);
Expect.throws(() { obj.runtimeType = null; }, (e) => e is NoSuchMethodError);
}