mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
9 lines
114 B
C
9 lines
114 B
C
// RUN: %clang_cc1 %s -Wno-return-type -fsyntax-only -verify
|
|
|
|
int t14() {
|
|
return;
|
|
}
|
|
|
|
void t15() {
|
|
return 1;
|
|
}
|