blob: 3ff5ad497903f5ceb17cb632f340306e6b427b32 [file] [log] [blame]
// ANCHOR: here
pub struct ThreadPool;
impl ThreadPool {
pub fn new(size: usize) -> ThreadPool {
ThreadPool
}
}
// ANCHOR_END: here
fn main() {}