blob: cefa9e118a48e04e4ddfcd89c5b27e0cf6faab7a [file] [log] [blame]
Douglas Gregor47268a32010-04-09 17:41:13 +00001// RUN: %clang_cc1 -fsyntax-only -Wunused -verify %s
2
3static int foo(int x) { return x; }
4
5template<typename T>
6T get_from_foo(T y) { return foo(y); }
7
8int g(int z) { return get_from_foo(z); }