[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0019-19.cs
1 // CS0019: Operator `-' cannot be applied to operands of type `float' and `decimal'
2 // Line: 6
3
4 class S
5 {
6         const decimal d = 0f - 1m;
7 }