summaryrefslogtreecommitdiffstats
path: root/tests/language-feature/error-handling/throw-type-mismatch.slang
blob: 7e5278962f6f496e49a34ca1c77218c06022a45b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//DIAGNOSTIC_TEST:SIMPLE(filecheck=CHECK):
enum MyError1
{
    Fail
}

enum MyError2
{
    Fail
}

int g() throws MyError1
{
    throw MyError2.Fail;
}

// CHECK: error 30116