dart-sdk/tests/language/generic_list_checked_test.dart
karlklose@google.com 1ed6793f0b Use assertSubtype for lists.
Also omit access to as-fields if possible.

R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//15735003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@23014 260f80e4-7a28-3924-810f-c04153c831b5
2013-05-22 13:10:25 +00:00

21 lines
463 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.
import 'package:expect/expect.dart';
bool inCheckedMode() {
try {
int i = 'hest';
} catch (e) {
return true;
}
return false;
}
main() {
if (inCheckedMode()) {
Expect.throws(() { List<int> t = new List<String>(); });
}
}