Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0019-37.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `bool' and `int'
2 // Line: 10
3
4 class C
5 {
6         static bool HasSessionId (string path)
7         {
8                 if (path == null || path.Length < 5)
9                         return false;
10
11                 return path.StartsWith ("/(") == 0;
12         }
13 }