(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail34.d
/*
TEST_OUTPUT:
---
fail_compilation/fail34.d(31): Error: duplicate `case "123"` in `switch` statement
---
*/

// $HeadURL$
// $Date$
// $Author$

// @author@	Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
// @date@	2004-11-17
// @uri@	news:u1gr62-kjv.ln1@kuehne.cn
// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2288

// duplicate case "123" in switch statement

module switch_12;

int main()
{
    string array = "123";
    switch(array)
    {
        case "123":
        {
            assert(0);
            break;
        }
        case "123":
        {
            assert(1);
            break;
        }
        default:
        {
            return -1; // dummy
        }
    }
    return 0;
}