This provides coverage for the bug: https://github.com/mesonbuild/meson/issues/9542pull/9628/head
parent
73bac14c8f
commit
bd9d981871
6 changed files with 70 additions and 1 deletions
@ -0,0 +1 @@ |
||||
option('search_dir', type : 'string', value : 'auto') |
@ -0,0 +1,8 @@ |
||||
#include "rejected.h" |
||||
|
||||
void say(void) { |
||||
printf("You are standing outside the Great Library of Alexandria.\n"); |
||||
printf("You decide to go inside.\n\n"); |
||||
alexandria_visit(); |
||||
printf("The librarian tells you it's time to leave\n"); |
||||
} |
@ -0,0 +1,6 @@ |
||||
#include <stdio.h> |
||||
#include <alexandria.h> |
||||
|
||||
#pragma once |
||||
|
||||
void say(void); |
@ -0,0 +1,6 @@ |
||||
#include "rejected.h" |
||||
|
||||
int main(void) { |
||||
say(); |
||||
return 0; |
||||
} |
Loading…
Reference in new issue