File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
src/DotNext.Tests/Reflection Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 1- using System . Reflection ;
2-
31namespace DotNext . Reflection ;
42
53public sealed class TypeExtensionsTests : Test
64{
7- public sealed class MyList : List < string >
8- {
9-
10- }
5+ public sealed class MyList : List < string > ;
116
127 [ Fact ]
138 public static void DelegateSignature( )
@@ -79,7 +74,7 @@ public static void IsUnmanaged()
7974 }
8075
8176 [ Fact ]
82- public static unsafe void IsImmutable ( )
77+ public static void IsImmutable ( )
8378 {
8479 True ( typeof ( ReadOnlySpan < int > ) . IsImmutable ( ) ) ;
8580 True ( typeof ( Guid ) . IsImmutable ( ) ) ;
@@ -126,7 +121,7 @@ public static void EqualsMethodResolution()
126121 }
127122
128123 [ Fact ]
129- public static unsafe void DefaultValues ( )
124+ public static void DefaultValues ( )
130125 {
131126 Null ( typeof ( string ) . GetDefaultValue ( ) ) ;
132127 Null ( typeof ( void * ) . GetDefaultValue ( ) ) ;
You can’t perform that action at this time.
0 commit comments