summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Directed/gettypetypeof
diff options
context:
space:
mode:
authorRichard L Ford <richford@microsoft.com>2015-11-10 10:08:07 -0800
committerRichard L Ford <richford@microsoft.com>2015-11-10 10:08:07 -0800
commit4d2f3eb9aabc3bcb5a6ba10175869f4358cff989 (patch)
tree742bfc5493f8d3786ef410c1b776ea0f833d685e /tests/src/JIT/Directed/gettypetypeof
parent03c0f463beb1a9a7d397ef14837f6e65cc061c98 (diff)
downloadcoreclr-4d2f3eb9aabc3bcb5a6ba10175869f4358cff989.tar.gz
coreclr-4d2f3eb9aabc3bcb5a6ba10175869f4358cff989.tar.bz2
coreclr-4d2f3eb9aabc3bcb5a6ba10175869f4358cff989.zip
Respond to review of gettypetypeofmatrix test.
The automatic formatter missed putting "public" and "static" in a canonical order, so do that manually. Also remove a case of Hungarian notation.
Diffstat (limited to 'tests/src/JIT/Directed/gettypetypeof')
-rw-r--r--tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs b/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs
index aa014d5611..dc0029bb3b 100644
--- a/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs
+++ b/tests/src/JIT/Directed/gettypetypeof/gettypetypeofmatrix.cs
@@ -15,9 +15,9 @@ internal class Test
private static Foo s_foo = new Foo();
private static Foo[] s_fooArray = new Foo[10];
- static public int Main()
+ public static int Main()
{
- int iReturn = 100;
+ int returnCode = 100;
try
{
IsObjectType(s_object, true);
@@ -52,10 +52,10 @@ internal class Test
Console.WriteLine(e);
Console.WriteLine("Test FAILED");
- iReturn = 666;
+ returnCode = 666;
}
- return iReturn;
+ return returnCode;
}
private static void IsResultCorrect(bool result, bool baseline)