Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0515-2.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 }