About
Contact
QtCreator
KDevelop
Solarized
1
// Test identical code folding handling.
2
#include
<stdio.h>
3
4
int
foo
(
) {
5
return
0
;
6
}
7
8
int
bar
(
) {
9
return
0
;
10
}
11
12
int
main
(
) {
13
return
foo
();
14
}
15