blob: b7eafb0e9f7f7ba5af4e27e63007a3d6191e2ab2 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
library deferred_type_lib;
class C {
const C(): x = 1;
const C.n(): x = 2;
final int? x;
}