blob: 0be97ce214f9d9fe7722d51fc18cbbd1a508a579 [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 file.
import 'dart:isolate';
test() => 'orange';
class Foo<T> {}
main() {
RawReceivePort keepAlive = new RawReceivePort();
print('spawned isolate running');
}