diff options
author | Mike Stump <mrs@apple.com> | 2009-07-22 00:43:08 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-22 00:43:08 +0000 |
commit | d1969d803cfcc65f1c334df4cc89c7fdd33ee4c9 (patch) | |
tree | 38190e8ec425fd224704ed136bc0dc26470f3af0 /test/Sema/implicit-int.c | |
parent | cf1831204b2b575fc57b851172f0426559ae482c (diff) |
Prep for new warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/implicit-int.c')
-rw-r--r-- | test/Sema/implicit-int.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/Sema/implicit-int.c b/test/Sema/implicit-int.c index 04b27a8f0e..9eab953b3f 100644 --- a/test/Sema/implicit-int.c +++ b/test/Sema/implicit-int.c @@ -1,6 +1,7 @@ // RUN: clang-cc -fsyntax-only %s -verify -pedantic foo() { // expected-warning {{type specifier missing, defaults to 'int'}} + return 0; } y; // expected-warning {{type specifier missing, defaults to 'int'}} |