You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.4 KiB
C++

/*
* Block comment
*/
#include <cstdio>
#include <vector>
using namespace std; // line comment
namespace foo {
typedef struct Struct {
int field;
} Typedef;
enum Enum {Foo = 1, Bar = 2};
Typedef *globalVar;
extern Typedef *externVar;
template<typename T, int N>
class Class {
T n;
public:
/**
* Semantic highlighting:
* Generated spectrum to pick colors for local variables and parameters:
* Color#1 SC1.1 SC1.2 SC1.3 SC1.4 Color#2 SC2.1 SC2.2 SC2.3 SC2.4 Color#3
* Color#3 SC3.1 SC3.2 SC3.3 SC3.4 Color#4 SC4.1 SC4.2 SC4.3 SC4.4 Color#5
*/
void function(int param1, int param2, int param3) {
int localVar1, localVar2, localVar3;
int *localVar = new int[1];
std::vector<int> vec = { 1, 2, 3 };
this->n = N;
localVar1 = param1 + param2 + localVar3;
label:
printf("Formatted string %d\n\g", localVar[0]);
printf(R"**(Formatted raw-string %d\n)**", 1);
std::cout << (1 << 2) << std::endl;
/**
* Macro documentation comment
* @param A description
*/
#define FOO(A) A
#ifdef DEBUG
printf("debug");
#endif
}
};
template <typename T>
concept Concept = requires (T t) {
t.field;
};
template<typename T>
struct Widget {
Widget(T t);
};
template<typename T>
Widget(T) -> Widget<typename T::value_type>;
3 years ago
}