Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
clang-tools-extra
/
test
/
clang-move
/
Inputs
/
var_test.cpp
Text
·
98 B
·
9023abc
Raw
7 lines · cpp
1
#include "var_test.h"
2
3
namespace a{
4
int kGlobalInt = 1;
5
const char *const kGlobalStr = "Hello";
6
}
7