Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: EXPECT_FATAL_FAILURE (et al) fail to compile when types have multiple template arguments #4740

Open
hjfreyer opened this issue Mar 28, 2025 · 0 comments

Comments

@hjfreyer
Copy link

Describe the issue

This is essentially the same as #3803, but for the specific case where the template arguments are being used with a type rather than a function. The workaround of wrapping the expression in parentheses does not work when it's a type with multiple parameters.

An alternative workaround is to use a typedef, but that's fairly ugly.

Steps to reproduce the problem

  EXPECT_FATAL_FAILURE(
      {
        std::pair<int, int> foo = std::make_pair(4, 2);
        ASSERT_EQ(foo.first, 2);
      },
      kErrorMsg);

What version of GoogleTest are you using?

9756ee7

What operating system and version are you using?

Linux

What compiler and version are you using?

Whichever version is in use by the Fuchsia repo at this time - I'm not sure how to find that.

What build system are you using?

GN

Additional context

This is discussed in llvm/llvm-project#53350, where they have a suggestion for how to resolve it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant