[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0246-8.cs
blob126b707b195cfb1902ae84a1c0ceac3953519ffb
1 // CS0246: The type or namespace name `Reflection' could not be found. Are you missing an assembly reference?
2 // Line: 7
3 using System;
5 class foo {
6 static void Main(string[] args ) {
7 Reflection.ConstructorInfo ci;
9 }