[runtime] Overwrite stacktrace for exception on re-throw. Fixes #1856.
[mono.git] / mono / tests / cas / linkdemand / aptclib.cs
1 using System;
2
3 namespace Mono.Test {
4
5         public class AptcLibrary {
6
7                 static public string Hello (string message)
8                 {
9                         return "Hello " + message;
10                 }
11         }
12 }