[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0246-30.cs
blob06b41b07da5d5314c80b3cd64e1e0ed95fa67731
1 // CS0246: The type or namespace name `T' could not be found. Are you missing an assembly reference?
2 // Line: 13
4 using System;
5 using System.Collections.Generic;
7 class X
9 public static void Main ()
11 Foo (() => {
12 IEnumerable<object> f = null;
13 foreach (KeyValuePair<int, T> e in f) {
15 });
19 static void Foo (Action a)