summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/tanya/range/primitive.d12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/tanya/range/primitive.d b/source/tanya/range/primitive.d
index 258d5d5..c4cb54a 100644
--- a/source/tanya/range/primitive.d
+++ b/source/tanya/range/primitive.d
@@ -1566,6 +1566,12 @@ in (!range.empty)
{
static if (hasLvalueElements!R)
{
+ if (false)
+ {
+ // This code is removed by the compiler but ensures that
+ // this function isn't @safe if range.front isn't @safe.
+ auto _ = range.front();
+ }
auto el = (() @trusted => &range.front())();
}
else
@@ -1613,6 +1619,12 @@ in (!range.empty)
{
static if (hasLvalueElements!R)
{
+ if (false)
+ {
+ // This code is removed by the compiler but ensures that
+ // this function isn't @safe if range.back isn't @safe.
+ auto _ = range.back();
+ }
auto el = (() @trusted => &range.back())();
}
else