Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 84a0ff7214e86608e05dc9a83b3001693fb4a8e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

void f(const int * const);

void f(const int * const) {

}

int main(int argc, char **argv) {

	const int &dsa { 2 };

	const int j { 8 };

	const int * const klz;

	const int l { 2 };

	bool yes = false;

	const int k { 42 };

	volatile const
	int q = 1;

	using int_const = int;
	const int_const r = 7;
}

Back to the top