diff options
author | John McCall <rjmccall@apple.com> | 2010-10-16 16:34:08 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-10-16 16:34:08 +0000 |
commit | d509182336a9b2a3d62248302107959022742c4d (patch) | |
tree | 3f89b7dd42f5c446a9605569a5a32428150957d2 /clang/test | |
parent | 2fcb554f5b44804ca2bc37c8918c75b1582e0549 (diff) | |
download | bcm5719-llvm-d509182336a9b2a3d62248302107959022742c4d.tar.gz bcm5719-llvm-d509182336a9b2a3d62248302107959022742c4d.zip |
Coding by inspection has its problems.
llvm-svn: 116672
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/CodeGenObjC/exceptions-nonfragile.m | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/CodeGenObjC/exceptions-nonfragile.m b/clang/test/CodeGenObjC/exceptions-nonfragile.m index 41cda2c0a9c..57ed1d9da9d 100644 --- a/clang/test/CodeGenObjC/exceptions-nonfragile.m +++ b/clang/test/CodeGenObjC/exceptions-nonfragile.m @@ -11,3 +11,7 @@ void protos() { @throw; } } + +void throwing() { + @throw(@"error!"); +} |