2005-04-17 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / tests / test-336.cs
1 using System;
2 using System.Threading;
3
4 class A {
5         static void X () {
6                 Console.WriteLine ();
7         }
8         static void Main () {
9                 Thread t = new Thread (X);
10         }
11 }
12
13
14
15
16
17