repro
This commit is contained in:
parent
3df042f464
commit
77e018019a
5 changed files with 10 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
||||||
|
#pragma once
|
||||||
/** very important function */
|
/** very important function */
|
||||||
void showNyanCat();
|
void showNyanCat();
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
|
#pragma once
|
||||||
/** foo foo foo */
|
/** foo foo foo */
|
||||||
int frob();
|
int frob();
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
#include "lib2/foo.hh"
|
#include "lib2/foo.hh"
|
||||||
|
#include "wat.hh"
|
||||||
|
|
||||||
void thingy() {
|
void thingy() {
|
||||||
frob();
|
frob();
|
||||||
|
wat();
|
||||||
|
showNyanCat();
|
||||||
|
lolwut();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
src/nya.hh
Normal file
2
src/nya.hh
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#pragma once
|
||||||
|
int lolwut();
|
||||||
2
src/wat.hh
Normal file
2
src/wat.hh
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#pragma once
|
||||||
|
int wat();
|
||||||
Loading…
Add table
Add a link
Reference in a new issue