Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-partial-15.cs
1 namespace Foo {
2         public partial class X
3         {
4                 public static void Main () {}
5         }
6 }
7
8 namespace Foo {
9         using System;
10         using System.Collections;
11
12         public partial class X
13         {
14                 public static IEnumerable Attempts2()
15                 {
16                         AttributeTargets t = AttributeTargets.All;
17                         yield break;
18                 }
19
20                 public static IEnumerable Attempts {
21                         get {
22                                 AttributeTargets t = AttributeTargets.All;
23                                 yield break;
24                         }
25                 }
26                 
27                 public IEnumerable this [int i] {
28                         get {
29                                 AttributeTargets t = AttributeTargets.All;
30                                 yield break;
31                         }
32                 }
33         }
34 }