linux-packaging-mono/mcs/tests/gtest-iter-26.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

25 lines
431 B
C#

using System.Collections.Generic;
using System.Reflection;
using System.Runtime.CompilerServices;
namespace Test
{
public static class Program
{
public static int Main ()
{
var m = typeof (Program).GetMethod ("Test");
var attr = m.GetCustomAttribute<IteratorStateMachineAttribute> ();
if (attr != null)
return 1;
return 0;
}
public static IEnumerable<object> Test ()
{
yield return null;
}
}
}