blob: 22d336f49bd616ae2e26871afff4a71791972438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
namespace Foo {
public partial class X
{
public static void Main () {}
}
}
namespace Foo {
using System;
using System.Collections;
public partial class X
{
public static IEnumerable Attempts2()
{
AttributeTargets t = AttributeTargets.All;
yield break;
}
public static IEnumerable Attempts {
get {
AttributeTargets t = AttributeTargets.All;
yield break;
}
}
public IEnumerable this [int i] {
get {
AttributeTargets t = AttributeTargets.All;
yield break;
}
}
}
}
|