Updated with review feedback.
[mono.git] / mcs / errors / cs1009.cs
1 // CS1009: Unrecognized escape sequence `\i'
2 // Line : 6
3
4 class X
5 {
6     static string s = "\i";
7 }