blob: 1d83d5f3d656d046a677c8522dc49957a2cd44b9 [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 final Type runtimeType
* A representation of the runtime type of the object.
* @description Checks that [runtimeType] is final and can not be set.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var obj = new Int32List(0);
try {
obj.runtimeType = null;
Expect.fail("[runtimeType] should be final");
} on NoSuchMethodError catch(ok) {}
}