
Summary: Imported small internal tests: - fallthrough-to-noop.test (cherry picked from FBD32158100)
15 lines
146 B
C
15 lines
146 B
C
// Test identical code folding handling.
|
|
#include <stdio.h>
|
|
|
|
int foo() {
|
|
return 0;
|
|
}
|
|
|
|
int bar() {
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
return foo();
|
|
}
|