mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 10:20:09 -04:00
8 lines
95 B
C++
8 lines
95 B
C++
|
|
#include "derived.h"
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
Foo f; // break here
|
||
|
|
f.bar();
|
||
|
|
return f.baz();
|
||
|
|
}
|