Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0208-14.cs
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `T'
2 // Line: 8
3
4 class X
5 {
6         public static void Foo<T> (T t)
7         {
8                 object o = sizeof (T);
9         }
10 }