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: 9b51d2d9bf43efbbc8874abc1b4cabec01995f17 (plain)
1
2
3
4
5
6
7
// cs1009.cs: Unrecognized escape sequence `\i'
// Line : 6

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