Closed
Description
$ ./pkg/front_end/tool/fasta compile pkg/front_end/testcases/hello.dart
$ ./xcodebuild/ReleaseX64/dart pkg/front_end/testcases/hello.dart.dill
$
No output, and no error. It should have printed "Hello, World!"
If I add --compile-sdk
it works fine:
$ ./pkg/front_end/tool/fasta compile --compile-sdk=xcodebuild/ReleaseX64/patched_sdk/ pkg/front_end/testcases/hello.dart
$ ./xcodebuild/ReleaseX64/dart pkg/front_end/testcases/hello.dart.dill
Hello, World!
$