From 2755fb8538fd44f7136f4d0549996219e8cbeff3 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Fri, 4 Nov 2011 14:53:03 +0300 Subject: [PATCH] Test for function call with projection type arguments --- .../quick/ProjectionOnFunctionArgumentErrror.jet | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 compiler/testData/checkerWithErrorTypes/quick/ProjectionOnFunctionArgumentErrror.jet diff --git a/compiler/testData/checkerWithErrorTypes/quick/ProjectionOnFunctionArgumentErrror.jet b/compiler/testData/checkerWithErrorTypes/quick/ProjectionOnFunctionArgumentErrror.jet new file mode 100644 index 00000000000..d509e83f5ad --- /dev/null +++ b/compiler/testData/checkerWithErrorTypes/quick/ProjectionOnFunctionArgumentErrror.jet @@ -0,0 +1,4 @@ +fun test() { + fun foo(){} + foo<in Int>() +} \ No newline at end of file