1source_filename = "foo.c"
2
3$com = comdat any
4
5define void @main() comdat($com) {
6  call void @bar()
7  ret void
8}
9
10declare void @bar()
11