add ISafeSerializationData
[mcs.git] / tests / test-partial-15.cs
blob22d336f49bd616ae2e26871afff4a71791972438
1 namespace Foo {
2 public partial class X
4 public static void Main () {}
8 namespace Foo {
9 using System;
10 using System.Collections;
12 public partial class X
14 public static IEnumerable Attempts2()
16 AttributeTargets t = AttributeTargets.All;
17 yield break;
20 public static IEnumerable Attempts {
21 get {
22 AttributeTargets t = AttributeTargets.All;
23 yield break;
27 public IEnumerable this [int i] {
28 get {
29 AttributeTargets t = AttributeTargets.All;
30 yield break;