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

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

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