summaryrefslogtreecommitdiff
path: root/tests/src/managed
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-03-16 07:32:12 -0700
committerGitHub <noreply@github.com>2017-03-16 07:32:12 -0700
commit84aab5f59d023849b9ccdc290e698e4a61ac75a2 (patch)
tree5236a7bea31a0b7deefd1a4f181c2d6cb1ded1aa /tests/src/managed
parent8f4861922d1761bfcb339d2474fd1b414cec8004 (diff)
downloadcoreclr-84aab5f59d023849b9ccdc290e698e4a61ac75a2.tar.gz
coreclr-84aab5f59d023849b9ccdc290e698e4a61ac75a2.tar.bz2
coreclr-84aab5f59d023849b9ccdc290e698e4a61ac75a2.zip
Delete mscorlib facade (#10157)
Fixes #7607
Diffstat (limited to 'tests/src/managed')
-rw-r--r--tests/src/managed/Compilation/HelloWorld.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/managed/Compilation/HelloWorld.cs b/tests/src/managed/Compilation/HelloWorld.cs
index bbf92a3117..289afe482b 100644
--- a/tests/src/managed/Compilation/HelloWorld.cs
+++ b/tests/src/managed/Compilation/HelloWorld.cs
@@ -3,12 +3,12 @@
// See the LICENSE file in the project root for more information.
//
-using System;
+using Internal;
class C
{
static int Main()
{
- LowLevelConsole.WriteLine("Hello " + "world");
+ Console.WriteLine("Hello " + "world");
return 100;
}
}