*2-11 06:12* <**lahwran**> if I have `somevariable: &Whatever`, and `Whatever` is `struct { derp: SomethingElse }`, then what do I get if I do `somevariable.derp`? &SomethingElse, or does it fail to take ownership? *2-11 06:15* <**mbrubeck**> lahwran: somevariable.derm has type `SomethingElse` *2-11 06:15* <**lahwran**> ok. drat. *2-11 06:15* <**lahwran**> so can I do &somevariable.derp or do I have to do &(somevariable.derp) *2-11 06:15* <**mbrubeck**> Either works. *2-11 06:15* <**lahwran**> cool, so . has a higher precedence than & then *2-11 06:15* <**mbrubeck**> Right. *2-11 06:16* <**lahwran**> yay