Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / test-cls-03.cs
1 // Compiler options: -warnaserror
2
3 using System;
4 [assembly:CLSCompliant(true)]
5
6 public interface I1 {
7 }
8
9 public class CLSClass {
10         protected internal I1 Foo() {
11                 return null;
12         }
13        
14         static void Main() {}
15 }