ref: 7cd4f442cf238c5de486b54deb0bfd3a3f7a0516
dir: /test/compoundimpl.myr/
use std
trait frobable @a =
frob : (val : @a -> void)
;;
impl frobable int# =
frob = {val
std.put("intptr,")
}
;;
impl frobable char# =
frob = {val
std.put("charptr\n")
}
;;
generic foo = {x : @a::frobable
frob(x)
}
const main = {
var a = (123 : int)
var b = 'c'
foo(&a)
foo(&b)
}