summaryrefslogtreecommitdiff
path: root/test/pending/run/t5698/client.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/t5698/client.scala')
-rw-r--r--test/pending/run/t5698/client.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/pending/run/t5698/client.scala b/test/pending/run/t5698/client.scala
new file mode 100644
index 0000000000..de672c1809
--- /dev/null
+++ b/test/pending/run/t5698/client.scala
@@ -0,0 +1,9 @@
+package client
+
+
+
+object Client extends App {
+ val peer = actors.remote.Node("localhost", 23456)
+ val a = actors.remote.RemoteActor.select(peer, 'test)
+ a ! server.TestMsg
+}