Add dlls folder.
[mono.git] / mcs / tests / dlls / test-679-2 / test-679-lib-2.cs
1 using System;
2
3 public class LibAAttribute : Attribute {
4         public LibAAttribute (string s)
5         {
6         }
7 }
8
9 public class LibA {
10         public static void A ()
11         {
12                 Console.WriteLine ("A");
13         }
14 }