summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/native_aot/src/cslib/MathLib.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/csharp/native_aot/src/cslib/MathLib.cs')
-rw-r--r--tests/projects/csharp/native_aot/src/cslib/MathLib.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/projects/csharp/native_aot/src/cslib/MathLib.cs b/tests/projects/csharp/native_aot/src/cslib/MathLib.cs
deleted file mode 100644
index 83255a4b3..000000000
--- a/tests/projects/csharp/native_aot/src/cslib/MathLib.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using System.Runtime.InteropServices;
-
-public static class MathLib {
- [UnmanagedCallersOnly(EntryPoint = "cs_add")]
- public static int Add(int a, int b) => a + b;
-
- [UnmanagedCallersOnly(EntryPoint = "cs_multiply")]
- public static int Multiply(int a, int b) => a * b;
-}