From: Dag Sverre Seljebotn Date: Thu, 15 Oct 2009 07:18:37 +0000 (+0200) Subject: Testcase for 304 X-Git-Tag: 0.13.beta0~2^2~121^2~52^2~3 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=1bc457def3c449bbdb7880893c66940b6ceccb70;p=cython.git Testcase for 304 --- diff --git a/tests/errors/typoT304.pyx b/tests/errors/typoT304.pyx new file mode 100644 index 00000000..8dc4b062 --- /dev/null +++ b/tests/errors/typoT304.pyx @@ -0,0 +1,7 @@ + +def f(): + print assert sizeof(int) == sizof(short) == sizeof(long) + +_ERRORS = u""" +3:10: Expected an identifier or literal +"""