blob: 2bb613b2e248e15a175fdb23c11f62cf8c779a9f [file]
// Copyright (c) 2021, 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 Class {
Class();
const Class.named() {
1;
}
}
const a = const Class();
const b = const Class.named();
main() {}