**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0246-8.cs
blob398bbc0d211c3eaedb93de94847a6b390f5dcaba
1 // CS0246: Cannot find type `Reflection.ConstructorInfo'
2 // Line: 7
3 using System;
5 class foo {
6 static void Main(string[] args ) {
7 Reflection.ConstructorInfo ci;
9 }