Merge pull request #4202 from marek-safar/compression
[mono-project.git] / mcs / errors / cs0023-17.cs
blob2ae61563b1828a534c513d6f0b0f1969e94339c1
1 // CS0023: The `.' operator cannot be applied to operand of type `method group'
2 // Line: 20
4 using System;
6 enum Enum
8 Test
11 class A : Attribute
13 public A (object e)
18 class C
20 [A (Enum.Test)]
21 int Enum ()
23 return 0;