cppalliance / safe-cpp

Boost Software License 1.0
191 stars 14 forks source link

compiler: error on data members with unbound lifetimes #32

Open seanbaxter opened 2 months ago

seanbaxter commented 2 months ago
choice A {
  owned(int),
  borrowed(const int^)
};

struct B {
  int owned;
  const int^ borrowed;
};