[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0246-8.cs
1 // CS0246: The type or namespace name `Reflection' could not be found. Are you missing an assembly reference?
2 // Line: 7
3 using System;
4
5 class foo {
6     static void Main(string[] args ) {    
7         Reflection.ConstructorInfo ci;        
8     }
9
10