summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-8.cs
blob: 126b707b195cfb1902ae84a1c0ceac3953519ffb (plain)
1
2
3
4
5
6
7
8
9
10
// CS0246: The type or namespace name `Reflection' could not be found. Are you missing an assembly reference?
// Line: 7
using System;

class foo {
    static void Main(string[] args ) {    
        Reflection.ConstructorInfo ci;        
    }
}