mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 13:40:11 +03:00
Move dmd files into compiler/
This commit is contained in:
parent
20bd0cacbd
commit
6374bb87b7
4579 changed files with 4 additions and 4 deletions
15
compiler/test/fail_compilation/biterrors.d
Normal file
15
compiler/test/fail_compilation/biterrors.d
Normal file
|
@ -0,0 +1,15 @@
|
|||
/* REQUIRED_ARGS: -preview=bitfields
|
||||
* TEST_OUTPUT:
|
||||
---
|
||||
fail_compilation/biterrors.d(103): Error: initializer not allowed for bit-field declaration
|
||||
fail_compilation/biterrors.d(104): Error: storage class not allowed for bit-field declaration
|
||||
---
|
||||
*/
|
||||
|
||||
#line 100
|
||||
|
||||
struct S
|
||||
{
|
||||
int i : 3 = 7;
|
||||
static int j : 3;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue