dmd/compiler/test/fail_compilation/nogc3.d

126 lines
3.4 KiB
D

// REQUIRED_ARGS: -o-
/***************** AssignExp *******************/
/*
TEST_OUTPUT:
---
fail_compilation/nogc3.d(15): Error: setting this array's `length` causes a GC allocation in `@nogc` function `testArrayLength`
fail_compilation/nogc3.d(16): Error: setting this array's `length` causes a GC allocation in `@nogc` function `testArrayLength`
fail_compilation/nogc3.d(17): Error: setting this array's `length` causes a GC allocation in `@nogc` function `testArrayLength`
---
*/
@nogc void testArrayLength(int[] a)
{
a.length = 3;
a.length += 1;
a.length -= 1;
}
/***************** CallExp *******************/
void barCall();
/*
TEST_OUTPUT:
---
fail_compilation/nogc3.d(34): Error: `@nogc` function `nogc3.testCall` cannot call non-@nogc function pointer `fp`
fail_compilation/nogc3.d(35): Error: `@nogc` function `nogc3.testCall` cannot call non-@nogc function `nogc3.barCall`
---
*/
@nogc void testCall()
{
auto fp = &barCall;
(*fp)();
barCall();
}
/****************** Closure ***********************/
@nogc void takeDelegate2(scope int delegate() dg) {}
@nogc void takeDelegate3( int delegate() dg) {}
/*
TEST_OUTPUT:
---
fail_compilation/nogc3.d(54): Error: function `nogc3.testClosure1` is `@nogc` yet allocates closure for `testClosure1()` with the GC
fail_compilation/nogc3.d(57): function `bar` closes over variable `x`
fail_compilation/nogc3.d(56): `x` declared here
fail_compilation/nogc3.d(66): Error: function `nogc3.testClosure3` is `@nogc` yet allocates closure for `testClosure3()` with the GC
fail_compilation/nogc3.d(69): function `bar` closes over variable `x`
fail_compilation/nogc3.d(68): `x` declared here
---
*/
@nogc auto testClosure1()
{
int x;
int bar() { return x; }
return &bar;
}
@nogc void testClosure2()
{
int x;
int bar() { return x; }
takeDelegate2(&bar); // no error
}
@nogc void testClosure3()
{
int x;
int bar() { return x; }
takeDelegate3(&bar);
}
/****************** ErrorExp ***********************/
/*
TEST_OUTPUT:
---
fail_compilation/nogc3.d(87): Error: this array literal causes a GC allocation in `@nogc` function `foo13702`
fail_compilation/nogc3.d(88): Error: this array literal causes a GC allocation in `@nogc` function `foo13702`
fail_compilation/nogc3.d(94): Error: this array literal causes a GC allocation in `@nogc` function `bar13702`
fail_compilation/nogc3.d(93): Error: this array literal causes a GC allocation in `@nogc` function `bar13702`
---
*/
int[] foo13702(bool b) @nogc
{
if (b)
return [1]; // error
return 1 ~ [2]; // error
}
int[] bar13702(bool b) @nogc
{
if (b)
return [1]; // error <- no error report
auto aux = 1 ~ [2]; // error
return aux;
}
/********** Enum and pointer types ***************/
// https://github.com/dlang/dmd/issues/21052
/*
TEST_OUTPUT:
---
fail_compilation/nogc3.d(111): Error: this array literal causes a GC allocation in `@nogc` function `f`
fail_compilation/nogc3.d(112): Error: this array literal causes a GC allocation in `@nogc` function `f`
---
*/
void f() @nogc
{
enum DA : int[] { a = [1,2,3] }
DA da = DA.a;
int i = *cast(int*)cast(char[4])['0', '0', '0', '0'];
}
/*
TEST_OUTPUT:
---
fail_compilation/nogc3.d(125): Error: this array literal causes a GC allocation in `@nogc` function `g`
---
*/
// https://github.com/dlang/dmd/issues/21054
void g() @nogc
{
int[] x = (int[2]).init[];
}