[Issue 18732] Can use template as type in a templatized class

2018-04-06 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18732

ag0aep6g  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||ag0ae...@gmail.com
 Resolution|--- |INVALID

--- Comment #1 from ag0aep6g  ---
Working as intended.

class Foo(bool b) {  }

is equivalent to

template Foo(bool b)
{
class Foo { ... }
}

https://dlang.org/spec/template.html#aggregate_templates

Inside the class, the name "Foo" refers to the class itself. To refer to the
template, you have to use `.Foo`. However, you can use `Foo!false`, because the
compiler is being nice. I don't know if that's in the spec, or if it's just a
welcome quirk.

Closing as invalid. Feel free to reopen if I'm missing something here.

--


[Issue 18732] Can use template as type in a templatized class

2018-04-05 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18732

Ketmar Dark  changed:

   What|Removed |Added

 CC||ket...@ketmar.no-ip.org

--