changeset 1596:9bd08b3d5299

Fixed extra brackets in opCall_02_C. See D bug 135.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:42:11 +0200
parents a61400c92052
children 8b9d4d2f925a
files run/o/opCall_02_C.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/run/o/opCall_02_C.d	Thu Aug 28 17:56:54 2008 +0200
+++ b/run/o/opCall_02_C.d	Tue Sep 09 16:42:11 2008 +0200
@@ -17,7 +17,7 @@
 int main(){
 	X x;
 
-	if((typeof(x))() != 3){
+	if(typeof(x)() != 3){
 		assert(0);
 	}