Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / cs0715.cs
blobaea011886c2026eacdc873ea76a218961c69075e
1 // cs0715.cs: `StaticClass.implicit operator StaticClass(int)': Static classes cannot contain user-defined operators
2 // Line: 5
4 static class StaticClass {
5 public static implicit operator StaticClass (int arg)
7 return null;