[w32handle] Stop returning 0 in every cases for locking/unlocking (#3926)
[mono.git] / mcs / tools / linker / Tests / TestCases / Linker / ReferenceInAttributes / LibLib.cs
1 using System;
2
3 namespace LibLib {
4
5         public class LibLibAttribute : Attribute {
6
7                 public Type LibLibType {
8                         [NotLinked] get { return null; }
9                         set {}
10                 }
11         }
12
13         public class BilBil {
14
15                 [NotLinked] public BilBil ()
16                 {
17                 }
18         }
19 }
20
21 [NotLinked, AttributeUsage (AttributeTargets.All)]
22 class NotLinkedAttribute : Attribute {
23 }