2 // https://bugzilla.novell.com/show_bug.cgi?id=379524
6 using System
.Globalization
;
7 using System
.Threading
;
11 static int Main (string [] args
)
13 for (int i
= 0; i
< 1000; ++i
) {
14 Thread thread
= new Thread (new ThreadStart (Test
));
16 thread
.CurrentCulture
= new CultureInfo ("en-CA");
24 string name
= Thread
.CurrentThread
.CurrentCulture
.Name
;