Merge pull request #3686 from lambdageek/dev-format-printf
[mono.git] / mcs / errors / cs0019-18.cs
1 // CS0019: Operator `>' cannot be applied to operands of type `bool' and `bool'
2 // Line: 6
3
4 class S
5 {
6         const bool res = true > false;
7 }