mirror of
https://github.com/lifting-bits/sleigh
synced 2026-06-21 13:56:12 +00:00
259bccedf0
If the patch is not present or wrong, this test should fail Co-authored-by: Duncan Ogilvie <mr.exodia.tpodt@gmail.com>
14 lines
178 B
C++
14 lines
178 B
C++
struct vector {};
|
|
struct set {};
|
|
struct unordered_map {};
|
|
struct string {};
|
|
|
|
#include <sleigh/libsleigh.hh>
|
|
|
|
int main() {
|
|
vector v;
|
|
set s;
|
|
unordered_map m;
|
|
string str;
|
|
}
|