codeowners update
[mono.git] / mcs / errors / cs0037-2.cs
1 // CS0037: Cannot convert null to `char' because it is a value type
2 // Line: 8
3
4 class Test
5 {
6         static void Main ()
7         {
8                 char p = null;
9         }
10 }