mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-11-28 21:34:00 +00:00
cd7e8a690c
This is guarded behind the --experimental_cc_shared_library flag PiperOrigin-RevId: 283982821 Change-Id: Ifec330c01d7b480b641f8432ce94175291e79238
13 lines
280 B
C++
13 lines
280 B
C++
#include "examples/test_cc_shared_library/bar.h"
|
|
#include "examples/test_cc_shared_library/baz.h"
|
|
#include "examples/test_cc_shared_library/preloaded_dep.h"
|
|
#include "examples/test_cc_shared_library/qux.h"
|
|
|
|
int foo() {
|
|
bar();
|
|
baz();
|
|
qux();
|
|
preloaded_dep();
|
|
return 42;
|
|
}
|