aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2009-06-09 00:18:54 -0400
committerJason Merrill <jason@gcc.gnu.org>2009-06-09 00:18:54 -0400
commit3dbbb7af5b4dd3ae01a9347081f4b486d3752160 (patch)
treeb7e0fcb69c34f807be32cbe3b5ca5c32518d8e1c
parent92b672095e73e4f09750f5f5b010ecabc1e001c4 (diff)
downloadgcc-3dbbb7af5b4dd3ae01a9347081f4b486d3752160.zip
gcc-3dbbb7af5b4dd3ae01a9347081f4b486d3752160.tar.gz
gcc-3dbbb7af5b4dd3ae01a9347081f4b486d3752160.tar.bz2
parser.c (cp_parser_type_id_1): 'auto' type is ok with a late-specified return type.
* parser.c (cp_parser_type_id_1): 'auto' type is ok with a late-specified return type. From-SVN: r148306
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/parser.c13
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/g++.dg/cpp0x/auto15.C13
4 files changed, 33 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index d9327a9..c4e84aa 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-08 Jason Merrill <jason@redhat.com>
+
+ * parser.c (cp_parser_type_id_1): 'auto' type is ok with a
+ late-specified return type.
+
2009-06-08 Jakub Jelinek <jakub@redhat.com>
PR c++/40373
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c
index 05ae257..b988850 100644
--- a/gcc/cp/parser.c
+++ b/gcc/cp/parser.c
@@ -13848,8 +13848,17 @@ cp_parser_type_id_1 (cp_parser* parser, bool is_template_arg)
if (type_specifier_seq.type
&& type_uses_auto (type_specifier_seq.type))
{
- error ("invalid use of %<auto%>");
- return error_mark_node;
+ /* A type-id with type 'auto' is only ok if the abstract declarator
+ is a function declarator with a late-specified return type. */
+ if (abstract_declarator
+ && abstract_declarator->kind == cdk_function
+ && abstract_declarator->u.function.late_return_type)
+ /* OK */;
+ else
+ {
+ error ("invalid use of %<auto%>");
+ return error_mark_node;
+ }
}
return groktypename (&type_specifier_seq, abstract_declarator,
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index e20679a..b08a0b9 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-08 Jason Merrill <jason@redhat.com>
+
+ * g++.dg/cpp0x/auto15.C: New.
+
2009-06-08 Jan Hubicka <jh@suse.cz>
PR debug/39834
diff --git a/gcc/testsuite/g++.dg/cpp0x/auto15.C b/gcc/testsuite/g++.dg/cpp0x/auto15.C
new file mode 100644
index 0000000..b23e1e2
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/auto15.C
@@ -0,0 +1,13 @@
+// { dg-options "-std=c++0x" }
+
+template< typename Fn > struct function;
+
+template< typename Result, typename ... ArgTypes >
+struct function< auto (ArgTypes...)->Result > {
+};
+
+int main()
+{
+ function< auto(double)->int > y;
+ return 0;
+}