We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c02e0a commit 104745dCopy full SHA for 104745d
src/DotNext.AotTests/Runtime/BoxedValueTests.cs
@@ -7,7 +7,7 @@ public class BoxedValueTests
7
public void BoxUnbox()
8
{
9
var obj = (BoxedValue<int>)42;
10
- // Assert.AreEqual(42.GetHashCode(), obj.GetHashCode());
+ Assert.AreEqual(42.GetHashCode(), obj.GetHashCode());
11
Assert.AreEqual(42, obj.GetReference());
12
// Assert.AreEqual(42, (int)obj);
13
// Assert.AreEqual(typeof(int), obj.GetType());
0 commit comments