(student: &T)
| 76 | } |
| 77 | |
| 78 | fn comp_sci<T: CompSciStudent>(student: &T) -> String { |
| 79 | comp_sci_student_greeting(student) |
| 80 | } |
| 81 | |
| 82 | fn comp_sci_vs_programmer<T, U>(student: &T, programmer: &U) -> String |
| 83 | where |
nothing calls this directly
no test coverage detected