Merge pull request #4202 from marek-safar/compression
[mono-project.git] / mcs / errors / cs0246-34.cs
blobd86c3cdd991ff9d0b653d87102ed6371d33d57cc
1 // CS0246: The type or namespace name `wrong' could not be found. Are you missing an assembly reference?
2 // Line: 15
4 using System;
6 class X
8 static void Foo<T> () where T : class
12 public static void Main ()
14 Action a = () => {
15 Foo<wrong> ();