This suprised me: ``` impl foo { // This method is private priv fn bar() { } } priv impl foo { // This method is public even though the impl is private. fn bar() { } } ``` `priv impl` doesn't do anything.