blob: 428098f26040a3176fd5b2973f142b66766c399c [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;
}