| 14 | use error::Result; |
| 15 | |
| 16 | struct SingletonReader { |
| 17 | inner: RefCell<render::Render>, |
| 18 | } |
| 19 | |
| 20 | fn singleton() -> &'static SingletonReader { |
| 21 | // Create an uninitialized static |
nothing calls this directly
no outgoing calls
no test coverage detected