Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-354.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c648814beb16912bfdf3efefdb90df2f5d4600e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class MYAttr : System.Attribute {
}

[MYAttr]
partial class A {
  public static void Main () {
  }
}

partial class A {
  int i;
}