Test for posargs being before kwargs.

This commit is contained in:
Jussi Pakkanen 2015-03-15 22:02:11 +02:00
parent 9741f75277
commit cdbfed21bc
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,3 @@
project('kwarg before arg', 'c')
executable(sources : 'prog.c', 'prog')

View File

@ -0,0 +1 @@
int main(int argc, char **argv) { return 0; }