From 0cbbd427f26e8b83ca06952de30b60d90f9ef20c Mon Sep 17 00:00:00 2001 From: Walter Bright Date: Wed, 10 Mar 2010 01:57:00 +0000 Subject: [PATCH] shouldn't have a main() --- std/concurrency.d | 3 --- 1 file changed, 3 deletions(-) diff --git a/std/concurrency.d b/std/concurrency.d index 283cc9e2a..a6e064da6 100644 --- a/std/concurrency.d +++ b/std/concurrency.d @@ -467,7 +467,4 @@ version( unittest ) send( tid, "the quick brown fox" ); receive( (string val) { writefln( "spawned thread returned: %s", val ); } ); } - - - void main() {} }