shithub: mc

ref: f81bd2d4d92e1c09f4111536ae0e45cdd21e1ff3
dir: /test/compoundimpl.myr/

View raw version
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)
}