Merge pull request #4540 from kumpera/android-changes-part1
[mono.git] / mcs / class / corlib / corert / RelocatedTypeAttribute.cs
1 using System;
2 using System.Diagnostics;
3
4 namespace Internal.Runtime.CompilerServices
5 {
6         [Conditional ("ALWAYSREMOVED")]
7         [AttributeUsage(AttributeTargets.All)]
8         class RelocatedTypeAttribute : Attribute
9         {
10                 public RelocatedTypeAttribute(String originalAssemblySimpleName)
11                 {
12                 }
13         }
14 }