summaryrefslogtreecommitdiff
path: root/tests/src/managed
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-02-05 03:56:42 -0800
committerGitHub <noreply@github.com>2017-02-05 03:56:42 -0800
commit5a885fa087396974b728d8af6320da8a271dbbbc (patch)
tree7c735fe178cc1e337610565e71449cbb9e4ff419 /tests/src/managed
parentc4a89fe2d82e00f683f486afe5347c9e5ef1f94b (diff)
downloadcoreclr-5a885fa087396974b728d8af6320da8a271dbbbc.tar.gz
coreclr-5a885fa087396974b728d8af6320da8a271dbbbc.tar.bz2
coreclr-5a885fa087396974b728d8af6320da8a271dbbbc.zip
Rename internal CoreLib Console to LowLevelConsole (#9341)
Diffstat (limited to 'tests/src/managed')
-rw-r--r--tests/src/managed/Compilation/HelloWorld.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/managed/Compilation/HelloWorld.cs b/tests/src/managed/Compilation/HelloWorld.cs
index 67e0148005..bbf92a3117 100644
--- a/tests/src/managed/Compilation/HelloWorld.cs
+++ b/tests/src/managed/Compilation/HelloWorld.cs
@@ -8,7 +8,7 @@ class C
{
static int Main()
{
- Console.WriteLine("Hello " + "world");
+ LowLevelConsole.WriteLine("Hello " + "world");
return 100;
}
}