summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0122-19.cs
blob: 908b6c274221b4d0b7e8e531689a7e98d658ba97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0122: `A.IFileWatcher' is inaccessible due to its protection level
// Line: 9
// Compiler options: -r:CS0122-19-lib.dll

namespace A {
	class C {
		public static void Main ()
		{
			IFileWatcher i;
		}
	}
}