blob: 5a11db2eee72d483d819bc7cba435d7cd5e4fac7 [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.md file.
# Invalidate the entrypoint which just exports another file (which has main).
type: simple
name: testInvalidateExportOfMain
entry: testInvalidateExportOfMain_a.dart
strong: true
invalidate:
- testInvalidateExportOfMain_a.dart
sources:
testInvalidateExportOfMain_a.dart: |
export 'testInvalidateExportOfMain_b.dart';
testInvalidateExportOfMain_b.dart: |
main() { print("hello"); }