[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0579-3.cs
blob399e712367407f2f7aaee67c4d8ff44436aad136
1 // CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2 // Line : 8
4 using System;
6 class MainClass {
7 [Obsolete]
8 [Obsolete]
9 static void Main()