(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / tests / cls-test-14.cs
blob4d408c56a21bc206cd38a3bd2691326df8d9cecb
1 using System;
3 public class CLSClass {
4 [CLSCompliant (false)]
5 static public implicit operator CLSClass(byte value) {
6 return new CLSClass();
9 [CLSCompliant (true)]
10 private void Error (bool arg) {
14 public class MainClass {
15 public static void Main () {