23 lines
		
	
	
		
			466 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			466 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package ast
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestAlwaysInlineAttr(t *testing.T) {
 | 
						|
	nodes := map[string]testNode{
 | 
						|
		`0x7fce780f5018 </usr/include/sys/cdefs.h:313:68> always_inline`:
 | 
						|
		testNode{&AlwaysInlineAttr{
 | 
						|
			Addr:       0x7fce780f5018,
 | 
						|
			Pos:        NewPositionFromString("/usr/include/sys/cdefs.h:313:68"),
 | 
						|
			ChildNodes: []Node{},
 | 
						|
		},
 | 
						|
		0x7fce780f5018,
 | 
						|
		NewPositionFromString("/usr/include/sys/cdefs.h:313:68"),
 | 
						|
		[]Node{},
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	runNodeTests(t, nodes)
 | 
						|
}
 |