1package main
2
3import (
4	"testshared/explicit"
5	"testshared/implicit"
6)
7
8func main() {
9	println(implicit.I() + explicit.E())
10}
11