From 513ef5ccd50c607c1f9ca11ec8f2b813aa358307 Mon Sep 17 00:00:00 2001 From: "asiva@google.com" Date: Mon, 12 Jan 2015 23:35:55 +0000 Subject: [PATCH] Add missing file (missed it in last round). Review URL: https://codereview.chromium.org//846903003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42796 260f80e4-7a28-3924-810f-c04153c831b5 --- tests/isolate/issue_21398_child_isolate1.dart | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/isolate/issue_21398_child_isolate1.dart diff --git a/tests/isolate/issue_21398_child_isolate1.dart b/tests/isolate/issue_21398_child_isolate1.dart new file mode 100644 index 00000000000..1a720bd499c --- /dev/null +++ b/tests/isolate/issue_21398_child_isolate1.dart @@ -0,0 +1,12 @@ +// Copyright (c) 2015, 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'; +import "package:expect/expect.dart"; + +main(List args, message) { + var sendPort1 = args[0] as SendPort; + var sendPort2 = args[1] as SendPort; + sendPort2.send(sendPort1); +}