[arm64] Add the full neon regs to the context
[mono.git] / mcs / tests / test-563.cs
1 // Compiler options: -warn:4 -warnaserror
2
3 using System;
4 using System.Collections;
5
6 public class Test
7 {
8         internal object TestMethod (TestCollection t)
9         {
10                 foreach (object x in t)
11                 {
12                         return x;
13                 }
14                 return null;
15         }
16
17         public static void Main ()
18         {
19         }
20 }
21
22 interface ITestCollection : IEnumerable
23 {
24         new IEnumerator GetEnumerator ();
25 }
26
27 interface TestCollection : ITestCollection
28 {
29 }