mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 06:18:56 -04:00

test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py It fails on Mac OS; apparently a VarDecl 'void *&C' is implicitly declared there, making the class template name C ambiguous. llvm-svn: 354185
11 lines
418 B
Python
11 lines
418 B
Python
from lldbsuite.test import lldbinline
|
|
from lldbsuite.test import decorators
|
|
|
|
lldbinline.MakeInlineTest(
|
|
__file__, globals(), [
|
|
decorators.expectedFailureAll(
|
|
compiler="gcc"),
|
|
decorators.expectedFailureAll(
|
|
oslist=['ios', 'watchos', 'tvos', 'bridgeos'],
|
|
bugnumber="rdar://problem/48128064: class template declaration unexpectedly shadowed by VarDecl on MacOS")])
|