blob: 5328be86cde8c72b7bba2270c1fce5edc39e8a7e [file] [log] [blame]
// Copyright (c) 2019, 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.
// @dart=2.9
import 'error_location_04_lib1.dart';
class Bar {
final Foo x;
const Bar() : x = const Foo(0);
}
bar() {}