view gcc/testsuite/gdc.test/fail_compilation/fail123.d @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 1830386684a0
children
line wrap: on
line source

/*
TEST_OUTPUT:
---
fail_compilation/fail123.d(11): Error: undefined identifier `type`
fail_compilation/fail123.d(17): Error: enum fail123.foo2 base type must not be void
---
*/

// Issue 355 - ICE from enum : nonexistent type

enum foo : type
{
    blah1,
    blah2
}

enum foo2 : void { a, b }