Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion GitHubActionsTest/Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
{
public class Test
{
public object Field;
public object Field; // Wowie

Check warning on line 5 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.

Check warning on line 5 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.

Check warning on line 5 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.

Check warning on line 5 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.
public object Field2;

Check warning on line 6 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field2' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.

Check warning on line 6 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field2' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.

Check warning on line 6 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field2' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.

Check warning on line 6 in GitHubActionsTest/Test.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable field 'Field2' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.

public override string ToString()
=> "Hello, world!";
Expand Down