Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2016-12-09 18:21:32 +0300
committerStephen Toub <stoub@microsoft.com>2016-12-09 18:27:50 +0300
commit9c06da6a34fcefa6fb37776ac57b80730e37387c (patch)
tree8a6db8ac1190ba1d80668847f329c0c3bbd5c0a6 /src/System.Runtime.CompilerServices.Unsafe/tests
parente0ea439770509b0702f2db589cbb5dc8a06ee1f4 (diff)
More ordering consistency
- "static unsafe" instead of "unsafe static" - "extern unsafe" instead of "unsafe extern" - "protected internal" instead of "internal protected"
Diffstat (limited to 'src/System.Runtime.CompilerServices.Unsafe/tests')
-rw-r--r--src/System.Runtime.CompilerServices.Unsafe/tests/UnsafeTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Runtime.CompilerServices.Unsafe/tests/UnsafeTests.cs b/src/System.Runtime.CompilerServices.Unsafe/tests/UnsafeTests.cs
index ba6ecb1737..84455780e9 100644
--- a/src/System.Runtime.CompilerServices.Unsafe/tests/UnsafeTests.cs
+++ b/src/System.Runtime.CompilerServices.Unsafe/tests/UnsafeTests.cs
@@ -419,7 +419,7 @@ namespace System.Runtime.CompilerServices
}
[Fact]
- public unsafe static void AsRef()
+ public static unsafe void AsRef()
{
byte[] b = new byte[4] { 0x42, 0x42, 0x42, 0x42 };
fixed (byte * p = b)