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.
dynamic i = null;
Returning i(i.e. null) from this function is not correct, since the return type is expected to be non-nullable:
i
null
T test4<T>(T t) { Expect.equals(typeOf<int>(), T); return i; }