[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs1010-2.cs
1 // CS1010: Newline in constant
2 // Line: 6
3
4 class Foo
5 {
6         static char c ='
7 ';
8 }
9