mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 14:05:49 -04:00

Originally submitted as r326323 and r326324. Reverted in r326432. Reverting the commit was a mistake. The breakage was due to invalid build files in our internal buildsystem, CMakeLists did not have any cyclic dependencies. llvm-svn: 326439
21 lines
204 B
C++
21 lines
204 B
C++
int h_chain(int x) {
|
|
return x * 2;
|
|
}
|
|
|
|
namespace chns {
|
|
int chf3(int x);
|
|
|
|
int chf2(int x) {
|
|
return chf3(x);
|
|
}
|
|
|
|
class chcls {
|
|
public:
|
|
int chf4(int x);
|
|
};
|
|
|
|
int chcls::chf4(int x) {
|
|
return x * 3;
|
|
}
|
|
}
|