This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0246-8.cs
1 // CS0246: Cannot find type `Reflection.ConstructorInfo'
2 // Line: 7
3 using System;
4
5 class foo {
6     static void Main(string[] args ) {    
7         Reflection.ConstructorInfo ci;        
8     }
9