[w32handle] Stop returning 0 in every cases for locking/unlocking (#3926)
[mono.git] / mcs / tools / linker / Tests / TestCases / Linker / Interface / Library.cs
1 using System;
2
3 public class Foo : IFoo {
4
5         public void Gazonk ()
6         {
7         }
8 }
9
10 public interface IFoo : IBar {
11 }
12
13 public interface IBar {
14
15         void Gazonk ();
16 }
17
18 [NotLinked] public class Baz : IBaz {
19 }
20
21 [NotLinked] public interface IBaz {
22 }
23
24 [NotLinked, AttributeUsage (AttributeTargets.All)]
25 public class NotLinkedAttribute : Attribute {
26 }