blob: 4092121393508c922e5289964c09dcef257fa4e7 [file] [log] [blame]
Chris Lattnerc8edf6b2008-02-06 21:20:34 +00001// RUN: clang < %s -emit-llvm
Chris Lattner1e0a3902008-01-16 19:17:22 +00002
Chris Lattnerc8edf6b2008-02-06 21:20:34 +00003void test1(int x) {
Chris Lattner1e0a3902008-01-16 19:17:22 +00004switch (x) {
5case 111111111111111111111111111111111111111:
6bar();
7}
8}
9
Chris Lattnerc8edf6b2008-02-06 21:20:34 +000010// Mismatched type between return and function result.
11int test2() { return; }
12void test3() { return 4; }
13