[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0715.cs
blob8fd1a92fb6281d04f2a991422e4ec8cc0ede021f
1 // CS0715: `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;