blob: fba57b250bd4baf9de3cb42a9db06b8c8ebd1339 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Institute for Software, HSR Hochschule fuer Technik
* Rapperswil, University of applied sciences and others
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.cdt.core.parser.tests.ast2.cxx14.constexpr;
import junit.framework.TestSuite;
public abstract class TypeAliasTests extends TestBase {
public static class NonIndexingTests extends TypeAliasTests {
public NonIndexingTests() {
setStrategy(new NonIndexingTestStrategy());
}
public static TestSuite suite() {
return suite(NonIndexingTests.class);
}
}
public static class SingleProjectTests extends TypeAliasTests {
public SingleProjectTests() {
setStrategy(new SinglePDOMTestStrategy(true, false));
}
public static TestSuite suite() {
return suite(SingleProjectTests.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);
}
}