[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0579-9.cs
1 // CS0579: The attribute `TestAttributesCollecting.A' cannot be applied multiple times
2 // Line: 19
3
4 using System;
5
6 namespace TestAttributesCollecting
7 {
8         class A : Attribute
9         {
10                 public A (int a)
11                 {
12                 }
13         }
14
15         partial class G1<[A (1)]T>
16         {
17         }
18
19         partial class G1<[A (2)]T>
20         {
21         }
22 }