2005-06-27 Geoff Norton <gnorton@customerdna.com>
[mono-project.git] / mcs / errors / cs0246-8.cs
bloba863b749ac7d24a341d4c0684386288e01f0e6e1
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 }