[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
[mono.git] / mcs / tests / test-cls-17.cs
1 // This code issues CS3014 error in csc ersion 1.1
2
3 using System;
4
5 [assembly: CLSCompliant(false)]
6
7 [CLSCompliant(true)]
8 public class Foo {
9         public static void Main () {}
10 }