1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

Bug 484617 - Test highlighting of user defined literal suffix

Change-Id: I8647077131e2d210d23dcd1ad591e864511c7b8e
Signed-off-by: Nathan Ridge <zeratul976@hotmail.com>
This commit is contained in:
Nathan Ridge 2015-12-17 23:21:09 -05:00 committed by Sergey Prigogin
parent 7059bfb0ea
commit 8ceb33a1fc

View file

@ -440,4 +440,11 @@ public class SemanticHighlightingTest extends TestCase {
public void testHighlightingInsideAlignmentSpecifier_451082() throws Exception {
makeAssertions();
}
// struct Duration {}; //$class
// Duration operator "" _d(unsigned long long); //$class,functionDeclaration
// Duration dur = 1000_d; //$class,globalVariable,overloadedOperator
public void testUserDefinedLiteralSuffix_484617() throws Exception {
makeAssertions();
}
}