[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0655.cs
1 // CS0655: `d' is not a valid named attribute argument because it is not a valid attribute parameter type
2 // Line: 11
3
4 using System;
5
6 class TestAttribute : Attribute
7 {
8    public decimal d;
9 }
10
11 [Test (d = 44444)]
12 class C
13 {
14 }