git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12059 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
367 B
C#
17 lines
367 B
C#
using System;
|
|
using li_boost_shared_ptr_bitsNamespace;
|
|
|
|
public class runme
|
|
{
|
|
static void Main()
|
|
{
|
|
VectorIntHolder v = new VectorIntHolder();
|
|
v.Add(new IntHolder(11));
|
|
v.Add(new IntHolder(22));
|
|
v.Add(new IntHolder(33));
|
|
|
|
int sum = li_boost_shared_ptr_bits.sum(v);
|
|
if (sum != 66)
|
|
throw new ApplicationException("sum is wrong");
|
|
}
|
|
}
|