1 // Written by Christopher E. Miller
2 // See the included license.txt for copyright and license details.
3 
4 
5 module dfl.internal.d2;
6 
7 /// Gets the const type of a type, or the type itself if not supported.
8 template ConstType(T) {
9    alias const(T) ConstType;
10 }