summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/unused-functions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/unused-functions.cpp')
-rw-r--r--test/SemaCXX/unused-functions.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/SemaCXX/unused-functions.cpp b/test/SemaCXX/unused-functions.cpp
new file mode 100644
index 0000000..cefa9e1
--- /dev/null
+++ b/test/SemaCXX/unused-functions.cpp
@@ -0,0 +1,8 @@
+// RUN: %clang_cc1 -fsyntax-only -Wunused -verify %s
+
+static int foo(int x) { return x; }
+
+template<typename T>
+T get_from_foo(T y) { return foo(y); }
+
+int g(int z) { return get_from_foo(z); }
OpenPOWER on IntegriCloud