summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/fail15089.d
blob: 221a97871bf17b14eb4011678912c514f7dba742 (plain)
1
2
3
4
5
6
7
8
9
10
/*
TEST_OUTPUT:
---
fail_compilation/fail15089.d(10): Error: cannot implicitly convert expression `130` of type `int` to `byte`
---
*/

enum Pieces {Rook = 2} /* line 1 */
immutable int color = 0b10000000;
byte piece = Pieces.Rook ^ color;