Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs1010.cs
1 // CS1010: Newline in constant
2 // Line: 6
3
4 class X
5 {
6         static string s = "Hello
7 world!";
8 }