object-introspection/test/integration/std_conditional.toml
Jake Hillion 5071519e45 oil v2
2023-08-23 15:59:53 +01:00

82 lines
1.8 KiB
TOML

definitions = '''
class A {
int f;
int g;
};
class B {
int h;
};
class C {
public:
// using T = std::conditional_t<alignof(int*) >= sizeof(char), A, B>;
std::conditional_t<alignof(int*) >= sizeof(char), A, B> foo;
};
'''
[cases]
[cases.a]
oil_skip = 'not implemented for treebuilder v2' # https://github.com/facebookexperimental/object-introspection/issues/317
param_types = ["const C&"]
setup = '''
C foo;
return {foo};
'''
expect_json = '''
[
{
"typeName": "C",
"isTypedef": false,
"staticSize": 8,
"dynamicSize": 0,
"members": [
{
"name": "foo",
"typePath": "foo",
"isTypedef": true,
"staticSize": 8,
"dynamicSize": 0,
"members": [
{
"name": "",
"typePath": "",
"typeName": "type",
"isTypedef": true,
"staticSize": 8,
"dynamicSize": 0,
"members": [
{
"name": "",
"typePath": "",
"typeName": "A",
"isTypedef": false,
"staticSize": 8,
"dynamicSize": 0,
"members": [
{
"name": "f",
"typePath": "f",
"typeName": "int",
"isTypedef": false,
"staticSize": 4,
"dynamicSize": 0
},
{
"name": "g",
"typePath": "g",
"typeName": "int",
"isTypedef": false,
"staticSize": 4,
"dynamicSize": 0
}
]
}
]
}
]
}
]
}
]
'''