view clang/test/CodeGenObjC/gnustep2-nontrivial-destructor-argument.mm @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents c4bab56944e8
children
line wrap: on
line source

// RUN: %clang_cc1 -triple x86_64-unknow-windows-msvc -S -emit-llvm -fobjc-runtime=gnustep-2.0 -o - %s 

// Regression test.  Ensure that C++ arguments with non-trivial destructors
// don't crash the compiler.

struct X
{
  int a;
  ~X();
};

@protocol Y
- (void)foo: (X)bar;
@end


void test(id<Y> obj)
{
  X a{12};
  [obj foo: a];
}