Why does hello world not compile in safe?
Jonathan M Davis via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Sat Nov 29 00:11:41 PST 2014
On Saturday, November 29, 2014 07:24:55 Freddy via Digitalmars-d-learn wrote:
> ----
> import std.stdio;
> @safe:
> void main()
> {
> writeln("Edit source/app.d to start your project.");
> }
>
> ----
> source/app.d(5): Error: safe function 'D main' cannot call system
> function 'std.stdio.writeln!(string).writeln'
Well, as the error message says, writeln isn't @safe. It's @system. Now, in
this case, writeln really should be inferred as @safe, but it looks like
whatever work needs to be done to make it so that writeln is treated as
@safe when it can be hasn't been done yet (whether it can be or not depends
on what's passed to it, so implementing that properly could be rather
complicated, but mainly, the issue is that someone needs to take the time to
do it).
- Jonathan M Davis
More information about the Digitalmars-d-learn
mailing list