Merge pull request #5390 from kumpera/fix_58637
[mono.git] / mono / tests / bug-81673-interface.cs
1 // IMyInterface.cs created with MonoDevelop
2 // User: lluis at 15:47 18/05/2007
3 //
4
5 using System;
6
7 namespace Application
8 {
9         public interface IMyInterface
10         {
11                 void Run ();
12 #if WITH_STOP
13                 void Stop ();
14 #endif
15         }
16 }