summaryrefslogtreecommitdiff
path: root/Tests/SourceGroups/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SourceGroups/main.c')
-rw-r--r--Tests/SourceGroups/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/SourceGroups/main.c b/Tests/SourceGroups/main.c
index 87225f546..f646b4901 100644
--- a/Tests/SourceGroups/main.c
+++ b/Tests/SourceGroups/main.c
@@ -12,6 +12,7 @@ extern int tree_empty_prefix_bar(void);
extern int tree_bar(void);
extern int tree_foobar(void);
extern int tree_baz(void);
+extern int nested(void);
int main()
{
@@ -23,5 +24,8 @@ int main()
"tree_empty_prefix_bar: %d\n",
tree_prefix_foo(), tree_prefix_bar(), tree_bar(), tree_foobar(),
tree_baz(), tree_empty_prefix_foo(), tree_empty_prefix_bar());
+
+ printf("nested: %d\n", nested());
+
return 0;
}