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
When generating process_X_case functions, the current implementation causes the compiler to complain about unused variables. We should, instead of generating comments describing what it might look like, just generate the example directly. I.e. using the abbreviate case:
fnprocess_abbreviate_case<I,O>(input:I,expected:O){assert_eq!(
student_abbreviate_func(input),// TODO: what is the actual name of student_abbreviate_func?
expected
);}
The text was updated successfully, but these errors were encountered:
When generating
process_X_case
functions, the current implementation causes the compiler to complain about unused variables. We should, instead of generating comments describing what it might look like, just generate the example directly. I.e. using theabbreviate
case:The text was updated successfully, but these errors were encountered: