]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/sanitizer-staticlib-link/program.c
Add support for dylibs with Address Sanitizer. This supports cdylibs and staticlibs...
[rust.git] / src / test / run-make / sanitizer-staticlib-link / program.c
1 // ignore-license
2 void overflow();
3
4 int main() {
5     overflow();
6     return 0;
7 }
8