Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-415-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4 public abstract class MyTestAbstract
5 {
6         protected abstract string GetName();
7         
8         public MyTestAbstract()
9         {
10         }
11
12         public void PrintName()
13         {
14                 Console.WriteLine("Name=" + GetName());
15         }
16 }