blob: 59553a31a59ca4b88ea25afc6de2c3fd2a906034 [file] [log] [blame]
// Copyright (c) 2018, 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.
class C<T> {
var field = T;
}
main() {
new C().field = 'bad'; //# 01: compile-time error
}