Added cyclic dependency include diagram test case

This commit is contained in:
Bartek Kryza
2022-04-10 22:42:57 +02:00
parent 49874df533
commit c033879b01
10 changed files with 146 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
#include "../../include/lib1/lib1.h"
namespace clanguml::t40002::lib1 {
int foo0() { return 0; }
int foo1() { return 1; }
int foo() { return foo1(); }
}