c45a9ae4f346f0929e7bf4dd9d049d32c9100b6e
[mono.git] / mcs / errors / gcs0515.cs
1 // CS0515: `N.G<T>.G()': static constructor cannot have an access modifier
2 // Line: 7
3
4 namespace N
5 {
6         class G<T> {
7                 public static G ()
8                 {
9                 }
10         }
11 }