diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-09-13 22:10:19 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-09-13 22:10:19 +0000 |
commit | 7fcd13658e00e4d9e66cc86899e2c2973ee510fa (patch) | |
tree | 64bc882ae2bd941b2355f658d561017973f5a8a2 | |
parent | b5ea91c8c4e64a937ba1f8239faa4ec017d49058 (diff) |
Fix incorrect comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163850 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CXX/conv/conv.prom/p4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/conv/conv.prom/p4.cpp b/test/CXX/conv/conv.prom/p4.cpp index 628c19c463..5f34dc4d39 100644 --- a/test/CXX/conv/conv.prom/p4.cpp +++ b/test/CXX/conv/conv.prom/p4.cpp @@ -14,7 +14,7 @@ enum B : bool { false_, true_ }; template<bool> struct T {}; T<false_> f; T<true_> t; -// FIXME: DR1407 will make this ill-formed for a different reason. +// FIXME: DR1407 will make this ill-formed T<+true_> q; // desired-error {{conversion from 'int' to 'bool'}} enum B2 : bool { |