summaryrefslogtreecommitdiff
path: root/Tests/LinkLineOrder/Exec2.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/LinkLineOrder/Exec2.c')
-rw-r--r--Tests/LinkLineOrder/Exec2.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/LinkLineOrder/Exec2.c b/Tests/LinkLineOrder/Exec2.c
new file mode 100644
index 000000000..91b85758e
--- /dev/null
+++ b/Tests/LinkLineOrder/Exec2.c
@@ -0,0 +1,8 @@
+/* Directly depends on Two */
+void TwoFunc();
+
+int main()
+{
+ TwoFunc();
+ return 0;
+}