[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0260-2.cs
blob3e7040b70d8f946278f6cafab6d76f4a3ac685d1
1 // CS0260: Missing partial modifier on declaration of type `Foo'. Another partial declaration of this type exists
2 // Line: 6
3 public partial class Foo
4 { }
6 public class Foo
7 { }
9 class X
11 static void Main ()
12 { }