aboutsummaryrefslogtreecommitdiff
path: root/test/use.tm
blob: 95ab3c7eb7a6bb2359947ca7ccb522cdcbddb06a (plain)
1
2
3
4
5
6
7
8
9
imported := use ./use_import

func asdf()->imported.ImportedType:
	return imported.get_value()

func main():
	>> [:imported.ImportedType]
	>> asdf()
	= ImportedType(name="Hello")