comparison tests/mini/compile_bug_ldc_154.d @ 867:766267808f11

Rename test to accepted name.
author Christian Kamm <kamm incasoftware de>
date Sat, 20 Dec 2008 09:29:36 +0100
parents tests/mini/compile_bug-ldc-154.d@fa019f0ce718
children
comparison
equal deleted inserted replaced
866:cd87b3f15ccf 867:766267808f11
1 template toInt(char[4] arg)
2 {
3 const uint toInt = (cast(uint[]) arg)[0];
4 }
5
6 void main()
7 {
8 auto i = toInt!("abcd");
9 }