4 // Tests for net 2.0 thread features
8 using System
.Threading
;
12 public static int Main () {
13 return TestDriver
.RunTests (typeof (Tests
));
16 public static bool started
= false;
18 public static void Start (object o
) {
22 public static int test_0_parameterized_thread_start () {
23 Thread t
= new Thread (new ParameterizedThreadStart (Start
));
26 return started
? 0 : 1;