summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1009.cs
blob: 3be5d42d7ffd60a10f514dabe1dfeba1ffa5911c (plain)
1
2
3
4
5
6
7
// CS1009: Unrecognized escape sequence `\i'
// Line : 6

class X
{
    static string s = "\i";
}