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: 3ef04478fbb2d7453aeaabcb60cd85f0e1095732 (plain)
1
2
3
4
5
6
7
// cs1009.cs: Unrecognized escape sequence
// Line : 6

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