diff --git a/Src/ILGPU/Interop.cs b/Src/ILGPU/Interop.cs
index 8f8926d67..6c91e1ffc 100644
--- a/Src/ILGPU/Interop.cs
+++ b/Src/ILGPU/Interop.cs
@@ -244,7 +244,7 @@ internal static string GetWriteLineFormat(string format)
///
/// The expression format to write.
/// All elements to write in string format.
- private static void WriteImplementation(
+ internal static void WriteImplementation(
string format,
params string[] elements) =>
Console.Write(format, elements);
diff --git a/Src/ILGPU/RuntimeSystem.cs b/Src/ILGPU/RuntimeSystem.cs
index 5afb90e12..5c9e60eb8 100644
--- a/Src/ILGPU/RuntimeSystem.cs
+++ b/Src/ILGPU/RuntimeSystem.cs
@@ -107,7 +107,7 @@ public MethodEmitter(
///
/// Returns the associated method builder.
///
- private DynamicMethod Method { get; }
+ internal DynamicMethod Method { get; }
///
/// Returns the internal IL generator.