[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }