Skip to content

Commit

Permalink
Disable nullability checks in file shared between the managed type sy…
Browse files Browse the repository at this point in the history
…stem and ILVerificationTests (dotnet#84382)

This file is shared between the managed type system and the ILVerificationTests suite.
The managed type system doesn't have nullable checks turned on, but ILVerificationTests does. This was causing build failures in PRs that build the ILVerificationTests.

We should enable nullable checking in the future in the managed type system as a whole at some point, but we aren't there yet.
  • Loading branch information
jkoritzinsky authored Apr 6, 2023
1 parent ab57c57 commit e45e5db
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

using Internal.TypeSystem;

#nullable disable

namespace Internal.TypeSystem
{
public static class CustomAttributeTypeNameParser
Expand Down

0 comments on commit e45e5db

Please sign in to comment.