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
This commit is contained in:
asiva@google.com 2015-01-12 23:35:55 +00:00
parent ca1c3241c4
commit 513ef5ccd5

View file

@ -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<String> args, message) {
var sendPort1 = args[0] as SendPort;
var sendPort2 = args[1] as SendPort;
sendPort2.send(sendPort1);
}