Merge pull request #5444 from hifi/fix-tds-inputoutput
[mono.git] / mcs / errors / cs0031-9.cs
1 // CS0031: Constant value `1.42' cannot be converted to a `int'
2 // Line: 6
3
4 class X
5 {
6         const int val = 1.42f;
7 }