Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a2c65393d808a4244e11cbf884c11ab4d7c94622 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*******************************************************************************
* Copyright (c) 2016 Institute for Software, HSR Hochschule fuer Technik 
* Rapperswil, University of applied sciences and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.cdt.core.parser.tests.ast2.cxx14.constexpr;

import junit.framework.TestSuite;

public class TypeAliasTests extends TestBase {
	public static class NonIndexing extends TypeAliasTests {
		public NonIndexing() {setStrategy(new NonIndexingTestStrategy());}
		public static TestSuite suite() {return suite(NonIndexing.class);}
	}
	
	public static class SingleProject extends TypeAliasTests {
		public SingleProject() {setStrategy(new SinglePDOMTestStrategy(true, false));}
		public static TestSuite suite() {return suite(SingleProject.class);}
	}
	
	//	constexpr int f() {
	//		typedef int myint;
	//		myint x = 5;
	//		x *= 5;
	//		return x;
	//	}
	
	//	constexpr int x = f();
	public void testTypedefDeclaration() throws Exception {
		assertEvaluationEquals(25);
	}
	
	//	constexpr int f() {
	//		using myint = int;
	//		myint x = 5;
	//		x *= 5;
	//		return x;
	//	}
	
	//	constexpr int x = f();
	public void testAliasDeclaration() throws Exception {
		assertEvaluationEquals(25);
	}
}

Back to the top