The result of compiling an exercise
| 77 | |
| 78 | // The result of compiling an exercise |
| 79 | pub struct CompiledExercise<'a> { |
| 80 | exercise: &'a Exercise, |
| 81 | _handle: FileHandle, |
| 82 | } |
| 83 | |
| 84 | impl<'a> CompiledExercise<'a> { |
| 85 | // Run the compiled exercise |
nothing calls this directly
no outgoing calls
no test coverage detected