Changed TryPeek to handle race condition with Dequeue.
[mono.git] / mcs / errors / cs0591.cs
1 // CS0591: Invalid value for argument to `System.AttributeUsage' attribute
2 // Line: 4
3
4 [System.AttributeUsage(0)]
5 class ClassMain {
6     
7         public static void Main () {
8         }
9 }
10