From: Bill Wendling Date: Sun, 1 Dec 2013 02:09:57 +0000 (+0000) Subject: Merging r195897: X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=367e84601aef9f63f7afab663bff3c00bf5a96f3;p=clang Merging r195897: ------------------------------------------------------------------------ r195897 | rikka | 2013-11-27 16:13:38 -0800 (Wed, 27 Nov 2013) | 1 line Add a return statement to the func with an int return type. ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_34@195989 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaTemplate/instantiate-local-class.cpp b/test/SemaTemplate/instantiate-local-class.cpp index bdc5ea0d4a..2bf24c2188 100644 --- a/test/SemaTemplate/instantiate-local-class.cpp +++ b/test/SemaTemplate/instantiate-local-class.cpp @@ -178,5 +178,6 @@ namespace PR14373 { }; int call() { exec_func(Type()); + return 0; } }