Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1009.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3be5d42d7ffd60a10f514dabe1dfeba1ffa5911c (plain)
1
2
3
4
5
6
7
// CS1009: Unrecognized escape sequence `\i'
// Line : 6

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