You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The mutability test in the current test harness seems satisfactory for testing the parsing of the mut keyword in the macro we've specified. However, the test bodies themselves don't seem very meaningful, since most params are unused and thus force allow(unused) to avoid warnings. I want to figure out how to write a test that doesn't give the warning that mut isn't necessary, but haven't figured out how to do so yet.
The text was updated successfully, but these errors were encountered:
The
mutability
test in the current test harness seems satisfactory for testing the parsing of themut
keyword in the macro we've specified. However, the test bodies themselves don't seem very meaningful, since most params are unused and thus forceallow(unused)
to avoid warnings. I want to figure out how to write a test that doesn't give the warning thatmut
isn't necessary, but haven't figured out how to do so yet.The text was updated successfully, but these errors were encountered: