2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0246-8.cs
blob0c607e76c85be8ce431f9dd017e72b6fef9b4313
1 // cs0246-8.cs: The type or namespace name `Reflection' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 7
3 using System;
5 class foo {
6 static void Main(string[] args ) {
7 Reflection.ConstructorInfo ci;
9 }