```rescript let f = ref(ignore) // Ok f.contents = () => { doA() doB() } // Weird f := ( () => { doA() doB() } ) ```