[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs1552.cs
blob65fd622f7501eefabed1342002b2b4d430e0cf22
1 // CS1552: Array type specifier, [], must appear before parameter name
2 // Line: 6
4 class T {
5 // To fix: change (string args[]) to (string [] args)
6 public static int Main (string args[])
8 return 0;